@extends('layouts.admin') @section('content')
Welcome to the admin dashboard.
| Booking ID | User | Amount | Status | Date |
|---|---|---|---|---|
| #{{ $booking->confirmation_code }} | {{ $booking->user->name ?? 'N/A' }} | ₹{{ number_format($booking->total_amount ?? 0, 2) }} | {{ ucfirst($booking->status) }} | {{ $booking->created_at->format('M d, Y H:i') }} |
| No recent bookings found. | ||||