Файловый менеджер - Редактировать - /home/clickysoft/public_html/jmapi5.clickysoft.net/app/Http/Requests/Admin/UpdateOfficeSupplyRequest.php
Назад
<?php namespace App\Http\Requests\Admin; use App\Models\OfficeSupplies; use Illuminate\Support\Facades\Gate; use Illuminate\Foundation\Http\FormRequest; class UpdateOfficeSupplyRequest extends FormRequest { public function authorize() { return Gate::allows('office_supplies_edit'); } public function rules() { return [ 'vendor_id' => [ 'required', 'integer', 'exists:vendors,id', ], 'sku' => [ 'string', 'max:50', 'required', 'unique:office_supplies,sku,' . request()->route('office_supply')->id, ], 'name' => [ 'string', 'max:50', 'required', ], 'description' => [ 'string', 'nullable', 'max:2055', ], 'featured_image' => [ 'nullable', 'mimes:jpg,gif,png', 'max:5120', ], 'status' => [ 'required', 'integer', 'in:'. implode(',', array_keys(OfficeSupplies::STATUS_RADIO)), ], ]; } public function messages() { return [ 'featured_image.uploaded' => "The featured image must not be greater than 5MB.", 'featured_image.max' => "The featured image must not be greater than 5MB.", ]; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка