*/ public function rules(): array { return [ 'crowd_type_id' => ['sometimes', 'ulid', 'exists:crowd_types,id'], 'name' => ['sometimes', 'string', 'max:255'], 'type' => ['sometimes', 'in:internal,external'], 'recipient_company_id' => ['nullable', 'ulid', 'exists:companies,id'], 'auto_approve' => ['sometimes', 'boolean'], 'max_persons' => ['nullable', 'integer', 'min:1'], ]; } }