Файловый менеджер - Редактировать - /home/clickysoft/public_html/charliapp-v2.clickysoft.net/app/Http/Requests/UpdateSeriesRequest.php
Назад
<?php namespace App\Http\Requests; use App\Models\Series; use Gate; use Illuminate\Foundation\Http\FormRequest; use Illuminate\Http\Response; class UpdateSeriesRequest extends FormRequest { public function authorize() { return Gate::allows('series_edit'); } public function rules() { return [ 'image_id' => [ 'nullable', 'integer', 'exists:user_galleries,id' ], 'series_name' => [ 'string', 'min:2', 'max:30', 'required', ], 'series_description' => [ 'string', 'nullable', ], 'books.*' => [ 'integer', 'exists:books,id' ], 'books' => [ 'array', ], 'color_id' => [ 'required', 'integer', 'exists:colors,id' ], ]; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка