check(); } public function _rules(): array { return [ 'users' => 'nullable|exists:users,id|array', 'projects' => 'nullable|exists:projects,id|array', 'start_at' => 'required|date', 'end_at' => 'required|date', ]; } }