*/ public function rules(): array { return [ 'name' => ['sometimes', 'string', 'max:255'], 'type' => ['sometimes', 'in:supplier,partner,agency,venue,other'], 'contact_name' => ['nullable', 'string', 'max:255'], 'contact_email' => ['nullable', 'email', 'max:255'], 'contact_phone' => ['nullable', 'string', 'max:30'], ]; } }