@if (session()->has('message'))
{{ session('message') }}
@endif @if (Session::has('success'))
Success! {{ Session::get('success') }}.
@endif
@forelse($bookings as $booking) @empty @endforelse
Sr.No. Booking # Name Vehicle Pickup Drop-off Date Status Action
{{ $loop->iteration }} {{ $booking->id }} {{ $booking->first_name }} {{ $booking->last_name }} {{ $booking->vehicle->name ?? '' }} {{ $booking->pickup_location }} {{ $booking->drop_location }} {{ getDateByFormat($booking->pickup_date) }}
{{ getTimeByFormat($booking->pickup_time) }}
{{ $booking->bookingStatus->name ?? '' }} {{ $booking->bookingChannel->name ?? '' }} @if ($booking->payment_status == 1) Paid @else Unpaid @endif @if ($booking->driver_status == 1) Driver Assigned Complete Ride @elseif($booking->bookingStatus && $booking->bookingStatus->name == 'Pending Enquiry') Send Qoutation @elseif(($booking->bookingStatus && $booking->bookingStatus->name == 'Qoutation Sent') || $booking->payment_status == 1) @else @endif
@can('booking-delete') Edit @endcan
There are no bookings added yet.
Showing {{ $bookings->firstItem() ? $bookings->firstItem() : 0 }} to {{ $bookings->lastItem() ? $bookings->lastItem() : 0 }} of total {{ $bookings->total() }} entries
{{ $bookings->links() }}
@include('livewire.bookings.assign-driver') @include('livewire.bookings.show') @include('livewire.bookings.qoute') @include('livewire.loader')