@extends('admin.layouts.master') @section('title','Booking Details') @section('content')
Booking Date: {{ \Carbon\Carbon::parse($booking->booking_date)->format('d M Y') }}
Bus Type: {{ $booking->busType->name ?? 'N/A' }}
Total Price: ₹{{ number_format($booking->total_price,2) }}
Status: {{ ucfirst($booking->status) }}
Created At: {{ $booking->created_at->format('d M Y H:i') }}
| # | Seat | Name | Age | Phone | |
|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $seat->seat_number ?? 'N/A' }} | {{ $seat->pivot->passenger_name }} | {{ $seat->pivot->passenger_age }} | {{ $seat->pivot->passenger_phone }} | {{ $seat->pivot->passenger_email }} |