Файловый менеджер - Редактировать - /home/clickysoft/public_html/travel-guru.clickysoft.net/app/Http/Requests/Admin/GuidedGroupTripPackageUpdateRequest.php
Назад
<?php namespace App\Http\Requests\Admin; use App\Rules\HighlightRules; use Illuminate\Foundation\Http\FormRequest; class GuidedGroupTripPackageUpdateRequest 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() { $rules = [ 'name' => 'required', 'single_price' => 'required', 'double_price' => 'required', 'image' => 'sometimes|image|mimes:jpeg,jpg,png|max:15360', 'guided_group_trip_id' => 'required|exists:guided_group_trips,id', ]; return $rules; } public function messages() { return [ 'guided_group_trip_id' => 'Please select Guided Group Trip.', ]; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка