File manager - Edit - /home/linknsbh/linkat.online/app/Http/Requests/User/HotelBooking/UserRoomBookingRequest.php
Back
<?php namespace App\Http\Requests\User\HotelBooking; use App\Rules\IsRoomAvailableRule; use Illuminate\Foundation\Http\FormRequest; class UserRoomBookingRequest 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() { // dd($this->booking_id, $this->room_id); // dd($this->all()); if ($this->filled('booking_id')) { $booking_id = $this->booking_id; } else { $booking_id = null; } return [ 'dates' => [ 'required', new IsRoomAvailableRule($this->room_id, $booking_id) ], 'nights' => 'required', 'guests' => 'required|numeric|min:1', 'customer_name' => 'required', 'customer_phone' => 'required', 'customer_email' => 'required|email:rfc,dns', 'payment_method' => 'required', 'payment_status' => 'required' ]; } /** * Get the validation messages that apply to the request. * * @return array */ public function messages() { return [ 'guests.min' => 'The guests must be at least 1 person.' ]; } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.31 | Generation time: 0.56 |
proxy
|
phpinfo
|
Settings