@extends('layouts.admin') @section('title', 'Dashboard') @section('content')

Dashboard

Total Users

{{ $stats['total_users'] }}

Total Orders

{{ $stats['total_orders'] }}

Total Products

{{ $stats['total_products'] }}

Revenue

Rp {{ number_format($stats['total_revenue']) }}

Recent Orders

@foreach($stats['recent_orders'] as $order) @endforeach
Order # Customer Total Status
{{ $order->order_number }} {{ $order->user->username ?? 'Guest' }} Rp {{ number_format($order->total) }} {{ $order->status }} View
@endsection