PATH:
home
/
rwabteecom
/
project_11
/
app
/
Http
/
Requests
/
Admin
/
Theme
/
Editing: ThemeRequest.php
<?php namespace App\Http\Requests\Admin\Theme; use App\Helpers\Image; use Illuminate\Foundation\Http\FormRequest; class ThemeRequest extends FormRequest { public function rules(): array { $rules = [ 'title.ar' => "required|string", 'title.en' => "required|string", 'image' => Image::imageRules(true), ]; return $rules; } public function authorize(): bool { return true; } }
SAVE
CANCEL