Файловый менеджер - Редактировать - /home/clickysoft/public_html/app/Http/Requests/UpdateCurrencyRequest.php
Назад
<?php namespace App\Http\Requests; use App\Models\Currency; use Gate; use Illuminate\Foundation\Http\FormRequest; use Illuminate\Http\Response; class UpdateCurrencyRequest extends FormRequest { public function authorize() { return Gate::allows('currency_edit'); } public function rules() { return [ 'name' => [ 'string', 'min:1', 'max:20', 'required', 'unique:currencies,name,' . request()->route('currency')->id, ], 'code' => [ 'string', 'min:1', 'max:3', 'required', 'unique:currencies,code,' . request()->route('currency')->id, ], 'symbol' => [ 'string', 'min:1', 'max:3', 'required', 'unique:currencies,symbol,' . request()->route('currency')->id, ], ]; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка