OwlCyberSecurity - MANAGER
Edit File: CategoryUpdateRequest.php
<?php namespace App\Http\Requests; use Illuminate\Foundation\Http\FormRequest; class CategoryUpdateRequest 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['name'] = 'required|max:255'; $rules['slug'] = 'required|max:255|unique:categories,slug,'.$this->id; $rules['description'] = 'max:6000'; $rules['meta_title'] = 'max:55'; $rules['description'] = 'max:150'; if(request()->hasFile('image')){ $rules['image'] = 'mimes:jpeg,jpg,png,webp|max:10240'; } return $rules; } }