Файловый менеджер - Редактировать - /home/clickysoft/public_html/app/Http/Requests/UpdateSupplierRequest.php
Назад
<?php namespace App\Http\Requests; use App\Models\Supplier; use Gate; use Illuminate\Foundation\Http\FormRequest; use Illuminate\Http\Response; class UpdateSupplierRequest extends FormRequest { public function authorize() { return Gate::allows('supplier_edit'); } public function rules() { return [ 'contact_name' => [ 'required', 'string', 'min:1', 'max:30', ], 'contact_email' => [ 'nullable', 'email', ], 'contact_number' => [ 'nullable', 'string', 'min:10', 'max:12', ], 'address_line_1' => [ 'nullable', 'string', ], 'address_line_2' => [ 'nullable', 'string', ], 'city' => [ 'nullable', 'string', 'min:1', 'max:30', ], 'state' => [ 'nullable', 'string', 'min:1', 'max:30', ], 'zip_code' => [ 'string', 'min:1', 'max:15', 'nullable', ], 'country_id' => [ 'required', 'integer', 'exists:countries,id', ], 'url' => [ 'nullable', 'string', 'max:255', ], 'logo' => [ 'nullable', 'mimes:png,jpg,jpeg', 'max:2048', ], ]; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка