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