Username: {{ $user->name }}
No HP: {{ $user->phone ?? '-' }}
| Produk | Jumlah | Harga | Total |
|---|---|---|---|
|
@php
$gambar = $item->produk->gambar
? asset('storage/' . $item->produk->gambar)
: asset('images/no-image.png');
@endphp
|
{{ $item->jumlah }} | Rp {{ number_format($item->harga,0,',','.') }} | Rp {{ number_format($item->jumlah * $item->harga,0,',','.') }} |