@extends('admin.layouts.app') @section('title', 'Dashboard') @section('content') {{-- Stats Cards --}}
Monthly Revenue
${{ number_format($stats['monthly_revenue'], 2) }}
Active Services
{{ $stats['active_services'] }}
Open Tickets
{{ $stats['open_tickets'] }}
Unpaid Invoices
${{ number_format($stats['unpaid_total'], 2) }}
#{{ $order->order_number }}
{{ $order->user->full_name ?? 'N/A' }} · {{ $order->created_at->diffForHumans() }}
No recent orders.
@endforelse{{ $ticket->user->full_name ?? $ticket->guest_name }} · {{ $ticket->department->name ?? '' }}
No recent tickets.
@endforelse| Invoice # | Client | Amount | Due Date | Status |
|---|---|---|---|---|
| {{ $invoice->invoice_number }} | {{ $invoice->user->full_name ?? 'N/A' }} | ${{ number_format($invoice->total, 2) }} | {{ $invoice->date_due?->format('M d, Y') }} | {{ ucfirst($invoice->status) }} |
| No invoices yet. | ||||