Pesanan Saya

Kelola informasi pesanan anda


@if ($dataOrder->isEmpty())

Anda belum memiliki pesanan.

@else @foreach ($dataOrder as $item)
Order: {{ $item->invoice }} {{ ucfirst($item->status) }}
Tanggal
: {{ $item->created_at->format('d M Y H:i') }}
Harga/KG
: Rp{{ number_format($item->price ?? 0, 0, ',', '.') }}
Berat
: {{ $item->weight ? number_format($item->weight, 1) . ' kg' : '-' }}
Harga Total
: Rp{{ $item->grand_total ? number_format($item->grand_total, 0, ',', '.') : '-' }}
@endforeach @endif