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