Файловый менеджер - Редактировать - /home/clickysoft/public_html/travel-guru.clickysoft.net/app/Http/Requests/Admin/TopTenDestinationUpdateRequest.php
Назад
<?php namespace App\Http\Requests\Admin; use Illuminate\Foundation\Http\FormRequest; class TopTenDestinationUpdateRequest extends FormRequest { /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return true; } /** * Get the validation rules that apply to the request. * * @return array<string, mixed> */ public function rules() { return [ 'name' => 'required|unique:top_ten_destinations,name,' . request()->route('id'), 'status' => 'required|boolean', 'description' => 'required|max:255', 'file' => 'image|mimes:jpeg,png,jpg,|max:10240', // 10MB // 'destination_ids' => 'required|exists:destinations,id', ]; } public function messages() { return [ 'destination_ids.exists' => 'One or more selected destinations do not exist.', ]; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка