Файловый менеджер - Редактировать - /home/clickysoft/public_html/app/Http/Requests/UpdateManufacturerRequest.php
Назад
<?php namespace App\Http\Requests; use App\Models\Manufacturer; use Gate; use Illuminate\Foundation\Http\FormRequest; use Illuminate\Http\Response; class UpdateManufacturerRequest extends FormRequest { public function authorize() { return Gate::allows('manufacturer_edit'); } public function rules() { return [ 'name' => [ 'required', 'string', 'min:1', 'max:50', ], 'support_url' => [ 'nullable', 'string', 'max:255', ], 'support_contact_number' => [ 'nullable', 'string', 'min:10', 'max:12', ], 'warranty_lookup_url' => [ 'nullable', 'string', 'max:255', ], 'logo' => [ 'nullable', 'mimes:jpeg,png,jpg,gif', ], ]; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка