Subtotal: |
Rp. {{ number_format($transaksi->total_harga, 0, ',', '.') }}
|
Shipping: |
free
|
Product: |
@foreach ($transaksi->detailTransaksi as $item)
{{ $item->product->nama }} x {{ $item->jumlah }}
Rp. {{ number_format($item->total_harga, 0, ',', '.') }}
@endforeach
|
Total: |
Rp. {{ number_format($transaksi->total_harga, 0, ',', '.') }}
|