@section('title', 'Bookings') @section('heading', 'Bookings')
Selected
@foreach ($bookings as $booking) @endforeach
Customer Name Tour Product Booking Date Total Price Actions
{{ $booking->customer->first_name ?? '' }} {{ $booking->tour->name }} {{ $booking->product->name ?? '' }} {{ $booking->booking_date ? Carbon\Carbon::parse($booking->booking_date)->format('Y-m-d') : 'N/A' }} {{ $booking->total_price }} Actions
@push('styles') @endpush @push('scripts') @endpush