File manager - Edit - /home/linknsbh/linkat.online/app/Http/Requests/User/CourseManagement/Instructor/InstructorStoreRequest.php
Back
<?php namespace App\Http\Requests\User\CourseManagement\Instructor; use App\Rules\ImageMimeTypeRule; use Illuminate\Foundation\Http\FormRequest; class InstructorStoreRequest extends FormRequest { /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return true; } /** * Get the validation rules that apply to the request. * * @return array<string, mixed> */ public function rules() { return [ 'image' => [ 'required', new ImageMimeTypeRule() ], 'user_language_id' => 'required', 'name' => 'required|max:255', 'occupation' => 'required|max:255', 'description' => 'required|min:30' ]; } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.31 | Generation time: 1.7 |
proxy
|
phpinfo
|
Settings