@extends('layouts.user') @section('title', 'Dashboard') @section('content')
Welcome back, {{ $user->username ?? 'User' }}! 👋
Total Orders
{{ $stats['total_orders'] ?? 0 }}
Total Spent
{{ currency($stats['total_spent'] ?? 0) }}
Pending Orders
{{ $stats['pending_orders'] ?? 0 }}
Cashback
{{ currency($stats['cashback'] ?? 0) }}
| Order # | Date | Game | Product | Qty | Total | Status | Action |
|---|---|---|---|---|---|---|---|
| {{ $order->order_number }} | {{ $order->created_at->format('d M Y') }} |
@if($firstItem && $firstItem->product && $firstItem->product->game)
@if($firstItem->product->game->icon)
@else
-
@endif
|
@foreach($orderItems->take(2) as $item)
@if($item->product && $item->product->image)
@endforeach
@if($orderItems->count() > 2)
+{{ $orderItems->count() - 2 }} more items
@endif
{{ $item->product->name ?? 'Deleted Product' }}
×{{ $item->quantity }}
|
{{ $orderItems->sum('quantity') }} | {{ currency($order->total) }} | {{ ucfirst($order->status) }} | View |
|
No orders yet Start shopping to see your orders here Shop Now |
|||||||