check(); } /** * Get the validation rules that apply to the request. * * @return array */ public function rules(): array { return [ 'title' => 'required|string|max:255', 'description' => 'nullable|string|max:255', 'due_start' => 'nullable|date', 'due_end' => 'nullable|date|after_or_equal:due_start', ]; } }