@extends('layouts.admin') @section('title', 'Dashboard') @section('content')
Total Users
{{ $stats['total_users'] }}
Total Orders
{{ $stats['total_orders'] }}
Total Products
{{ $stats['total_products'] }}
Revenue
Rp {{ number_format($stats['total_revenue']) }}
| Order # | Customer | Total | Status | |
|---|---|---|---|---|
| {{ $order->order_number }} | {{ $order->user->username ?? 'Guest' }} | Rp {{ number_format($order->total) }} | {{ $order->status }} | View |