Admin Dashboard
Welcome back! Here's what's happening with your business today.
Revenue
{{ '$' . number_format($stats['revenue_today'], 2) }}
Total Clients
{{ number_format($stats['total_users']) }}
Active Services
{{ number_format($stats['active_services']) }}
Open Tickets
{{ number_format($stats['open_tickets']) }}
Revenue This Month
{{ '$' . number_format($stats['revenue_this_month'], 2) }}
Pending Orders
{{ number_format($stats['pending_orders']) }}
Cancellations (Month)
{{ number_format($stats['cancelled_services']) }}
Recent Activity
View All{{ $user->name }} registered a new account
{{ $user->created_at->diffForHumans() }}
New service order from {{ $service->user->name ?? 'Unknown' }}
{{ $service->created_at->diffForHumans() }}
Support Status
View All{{ $ticket->subject }}
{{ $ticket->user->name ?? 'Unknown' }} • {{ $ticket->created_at->diffForHumans() }}
{{ ucfirst($ticket->status) }}No open tickets
Recent Clients
View All| Name | Joined | |
|---|---|---|
| {{ $user->name }} | {{ $user->email }} | {{ $user->created_at->format('M d, Y') }} |
Recent Invoices
View All| Invoice # | Client | Amount | Status |
|---|---|---|---|
| {{ $invoice->invoice_number }} | {{ $invoice->user->name ?? 'N/A' }} | {{ format_currency($invoice->total) }} | {{ ucfirst($invoice->status) }} |