@extends('layouts.user') @section('title', 'Dashboard') @section('content')
Total Orders
{{ $stats['total_orders'] }}
Total Spent
{{ currency($stats['total_spent']) }}
{{ $stats['total_spent_idr'] ?? 'Rp 0' }}
Pending Orders
{{ $stats['pending_orders'] }}
Cashback
{{ currency($stats['cashback'] ?? 0) }}
| Order # | Date | Total | Status | |
|---|---|---|---|---|
| {{ $order->order_number }} | {{ $order->created_at->format('d/m/Y') }} | {{ currency($order->total) }} | {{ ucfirst($order->status) }} | View |