OwlCyberSecurity - MANAGER
Edit File: GalleryAddRequest.php
<?php namespace App\Http\Requests; use Illuminate\Foundation\Http\FormRequest; class GalleryAddRequest extends FormRequest { /** * Determine if the user is authorized to make this request. */ public function authorize(): bool { return true; } /** * Get the validation rules that apply to the request. * * @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array|string> */ public function rules(): array { $rules['title'] = 'required|max:255'; if(request()->hasFile('image')){ $rules['image'] = 'mimes:jpeg,jpg,png,webp|max:10240'; } return $rules; } }