{{-- Because she competes with no one, no one can compete with her. --}}
← Kembali
Invoice: {{ $transaction->invoice }}

Tanggal: {{ $transaction->created_at->format('d/m/Y H:i') }}

Payment: {{ strtoupper($transaction->payment_type) }}

Total: Rp {{ number_format($transaction->total) }}

Discount: Rp {{ number_format($transaction->discount) }}

Paid: Rp {{ number_format($transaction->paid_amount) }}

Change: Rp {{ number_format($transaction->change) }}

@foreach($transaction->items as $item) @endforeach
Produk Qty Harga Subtotal Catatan
{{ $item->product->name }} {{ $item->qty }} Rp {{ number_format($item->price) }} Rp {{ number_format($item->subtotal) }} {{ $item->note ?? '-' }}