{{ $storeSettings->store_name ?? config('app.name') }} System
Periode: {{ \Carbon\Carbon::parse($startDate)->format('d M Y') }} - {{ \Carbon\Carbon::parse($endDate)->format('d M Y') }}
Dicetak pada: {{ now()->format('d M Y, H:i') }} WIB
| No | Tanggal | Kasir | Keterangan | Total | Pembayaran |
|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $transaction->created_at->format('d/m/Y H:i') }} | {{ $transaction->user->name }} | {{ $transaction->note ?? '-' }} | Rp {{ number_format($transaction->total_amount, 0, ',', '.') }} | {{ ucfirst($transaction->payment_method) }} |
| Tidak ada transaksi pada periode ini | |||||
| TOTAL | Rp {{ number_format($transactions->sum('total_amount'), 0, ',', '.') }} | ||||
| No | Tanggal | Keterangan | Dicatat Oleh | Jumlah |
|---|---|---|---|---|
| {{ $index + 1 }} | {{ \Carbon\Carbon::parse($expense->date)->isoFormat('D MMM YYYY') }} | {{ $expense->description }} | {{ $expense->user->name ?? '-' }} | Rp {{ number_format($expense->amount, 0, ',', '.') }} |
| Tidak ada data pengeluaran | ||||
| TOTAL PENGELUARAN | Rp {{ number_format($summary['total_expenses'], 0, ',', '.') }} | |||
| No | Tanggal | Produk | Qty | Supplier | Catatan | Total |
|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ \Carbon\Carbon::parse($purchase->date)->isoFormat('D MMM YYYY') }} |
|
|
{{ $purchase->supplier->name ?? 'Umum' }} | {{ $purchase->note ?? '-' }} | Rp {{ number_format($purchase->total_amount, 0, ',', '.') }} |
| Tidak ada data pembelian stok | ||||||
| TOTAL PEMBELIAN STOK | Rp {{ number_format($summary['total_purchases'], 0, ',', '.') }} | |||||