Rejected Bookings

{{ __(' Booking rejected by Admin') }}

Welcome Admin! EDC Booking System
Back to Profile
Click on Booking Id Button to know details of Applicant, Guest(s) , No. of days, Rooms etc.
{{--
--}}
{{-- --}} @forelse ($bookings as $booking) {{-- --}} @empty @endforelse
Applicant NameGuest NameBooked On Status Reject Reason
{{ $booking->booking_id }} {{ ucwords($booking->user->name) }} {{ optional($booking->guest)->guest_name ?? 'N/A' }}ff {{ date_format($booking->created_at, 'd/M/y') }} {{ date_format($booking->booking_from, 'd-M-Y H:i:s') }} {{ date_format($booking->booking_to, 'd-M-Y H:i:s') }} on {{ date_format($booking->updated_at, 'd-M-Y') }} {{ $booking->comment }}
No Rejected Booking Found!
{{ $bookings->links() }}

View Details of Applicant & Guest(s)

@foreach ($bookings as $booking) @if ($booking->id == $id)
Applicant's Details:
Name: {{ $booking->user->name }}
Designation: {{ $booking->user->designation }}
Department: {{ $booking->user->department }}
Email: {{ $booking->user->email }}
Phone: {{ $booking->user->phone }}
User Type: {{ $booking->user->user_type }}

Guest Details
Guest Name: {{ $booking->guest->guest_name }}
Guest Email: {{ $booking->guest->guest_email }}
Guest Address: {{ $booking->guest->guest_phone }}
Guest State, City: {{ $booking->guest->city }}, {{ $booking->guest->state }}
Guest Relation: {{ $booking->guest->guest_relation }}
Id Type Submitted: {{ $booking->guest->guest_idtype }}
Booking Details:
Booking Id: {{ $booking->booking_id }}
Booking Purpose: {{ $booking->purpose }}
Number of Rooms: {{ $booking->num_rooms }}
Number of Days: {{ $booking->num_days }}
Total Guests: {{ $booking->totalguests }}
@endif @endforeach