Файловый менеджер - Редактировать - /home/clickysoft/public_html/travel-guru.clickysoft.net/app/Http/Requests/Admin/RoomSchedulerRequest.php
Назад
<?php namespace App\Http\Requests\Admin; use Illuminate\Foundation\Http\FormRequest; class RoomSchedulerRequest 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 [ 'room_id' => 'required', 'total_rooms' => 'required', 'total_room_reserved' => 'required', 'reserved_date' => 'required', 'room_price' => 'required', 'single_room_price' => 'required', 'discount_price' => 'nullable', 'is_breakfast' =>'required|boolean', 'is_discount' =>'nullable|boolean', 'is_active' =>'required|boolean', ]; } public function messages() { return [ 'room_id.required' => 'The room field is required.', ]; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка