*/ public function rules(): array { return [ 'name' => ['sometimes', 'string', 'max:255'], 'person_type' => ['sometimes', 'in:CREW,VOLUNTEER,PRESS,PHOTO,PARTNER'], 'date' => ['sometimes', 'date'], 'start_time' => ['sometimes', 'date_format:H:i'], 'end_time' => ['sometimes', 'date_format:H:i'], 'duration_hours' => ['nullable', 'numeric', 'min:0.5', 'max:24'], ]; } }