|string> */ public function rules(): array { return [ 'label' => 'nullable|string|max:255', 'is_group' => 'boolean', 'participants' => 'required|array|min:1', 'participants.*' => 'exists:users,id', ]; } }