@extends('layouts.admin') @section('content')

Admin Dashboard

Welcome to the admin dashboard.

Total Earnings Today
₹{{ number_format($totalEarningsToday ?? 0, 2) }}
Total Bookings
{{ number_format($totalBookings ?? 0) }}
Total Received Amount
₹{{ number_format($totalReceivedAmount ?? 0, 2) }}
Total Invoices
{{ $totalInvoices ?? 0 }}
Total Customers
{{ number_format($totalUsers ?? 0) }}
Confirmed Bookings
{{ number_format($confirmedBookings ?? 0) }}
Pending Bookings
{{ number_format($pendingBookings ?? 0) }}
Total Orders
{{ number_format($totalOrders ?? 0) }}

Recent Bookings

@forelse($recentBookings ?? [] as $booking) @empty @endforelse
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.
@endsection