@extends('layouts.user') @section('title', 'My Orders') @section('content')
Manage and track all your orders
| Order # | Date | Game | Products | Qty | Total | Status | Action |
|---|---|---|---|---|---|---|---|
| {{ $order->order_number }} | {{ $order->created_at->format('d M Y, H:i') }} |
@if($firstItem && $firstItem->product && $firstItem->product->game)
@if($firstItem->product->game->icon)
@else
-
@endif
|
@foreach($order->items->take(2) as $item)
@if($item->product && $item->product->image)
@endforeach
@if($order->items->count() > 2)
+{{ $order->items->count() - 2 }} more items
@endif
{{ $item->product->name ?? 'Deleted Product' }}
×{{ $item->quantity }}
|
{{ $order->items->sum('quantity') }} |
{{ $order->total_formatted ?? currency($order->total) }}
@if($order->total_idr)
{{ $order->total_idr }}
@endif
|
{{ ucfirst($order->status) }} | View |
|
No orders yet Start shopping to see your orders here Browse Products |
|||||||
Harga ditampilkan dalam {{ $userCurrency['code'] }} ({{ $userCurrency['symbol'] }}) berdasarkan lokasi Anda. Nilai dalam IDR adalah jumlah yang sebenarnya dibayarkan.