@extends('layout.mainlayout') @section('content') @component('components.breadcrumb') @slot('title') My Bookings @endslot @slot('item1') Portal @endslot @slot('item2') Bookings @endslot @endcomponent
image
{{ auth()->user()->name ?? 'Customer' }}
Customer
My Bookings
@forelse($bookings ?? [] as $booking) @if($booking instanceof \App\Models\Booking) @endif @empty @endforelse
Booking # Service Date Amount Status Action
{{ $booking->reference ?? 'N/A' }} {{ $booking->booking_type ? ucfirst($booking->booking_type) : 'N/A' }} {{ $booking->created_at?->format('M d, Y') ?? 'N/A' }} ${{ number_format($booking->price ?? 0, 2) }} {{ $booking->status ? ucfirst($booking->status) : 'pending' }} View

No bookings found. Start exploring and book your next adventure!

Explore Now
@endsection