check(); } public function rules(): array { return [ 'name' => ['sometimes', 'string', 'max:255'], 'email' => ['nullable', 'email', 'max:255'], 'phone' => ['nullable', 'string', 'max:50'], 'address' => ['nullable', 'string', 'max:255'], 'notes' => ['nullable', 'string'], ]; } }