*/ public function rules(): array { return [ 'crowd_type_id' => ['required', 'ulid', 'exists:crowd_types,id'], 'name' => ['required', 'string', 'max:255'], 'email' => ['required', 'email', 'max:255'], 'phone' => ['nullable', 'string', 'max:30'], 'company_id' => ['nullable', 'ulid', 'exists:companies,id'], 'status' => ['nullable', 'in:invited,applied,pending,approved,rejected,no_show'], 'custom_fields' => ['nullable', 'array'], ]; } }