|string> */ public function rules() { return [ 'name' => 'required|string|max:255', // Name is required 'email' => 'nullable|email|max:255', // Email is optional but must be a valid email if provided 'logo' => 'nullable|image|dimensions:min_width=100,min_height=100', // Logo must be an image and at least 100x100 pixels 'website' => 'nullable|url|max:255', // Website is optional but must be a valid URL if provided ]; } }