check(); } /** * Get the validation rules that apply to the request. * * @return array */ public function rules(): array { return [ 'todo_id' => 'required|exists:todos,id', 'pomo_start' => 'required|date', 'pomo_end' => 'required|date', 'notes' => 'nullable|string', ]; } }