*/ public function rules(): array { return [ 'crowd_type_id' => ['required', 'ulid', 'exists:crowd_types,id'], 'first_name' => ['required', 'string', 'max:255'], 'last_name' => ['required', 'string', 'max:255'], 'date_of_birth' => ['nullable', 'date', 'before:today'], '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'], 'remarks' => ['nullable', 'string', 'max:5000'], 'custom_fields' => ['nullable', 'array'], ]; } }