{{ $storeSettings->store_name ?? config('app.name') }} System
Periode: {{ \Carbon\Carbon::parse($startDate)->format('d M Y') }} - {{ \Carbon\Carbon::parse($endDate)->format('d M Y') }}
Filter Tipe: {{ strtoupper($orderType ?? 'all') }} @if(!empty($bookingStatus)) | Status Booking: {{ $bookingStatusLabels[$bookingStatus] ?? $bookingStatus }} @endif
Dicetak pada: {{ now()->format('d M Y, H:i') }} WIB
| No | Tanggal | Type/Kode | Kasir | Keterangan | Total | Pembayaran |
|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $transaction->created_at->format('d/m/Y H:i') }} |
{{ strtoupper($transaction->order_type ?? 'sale') }}
@if($transaction->order_type === 'booking' && $transaction->booking_code)
{{ $transaction->booking_code }} @endif |
{{ $transaction->user->name }} |
@if($transaction->order_type === 'booking')
{{ $transaction->booker_name ?? $transaction->customer_name }} @endif {{ $transaction->note ?? '-' }} |
Rp {{ number_format($transaction->total_amount, 0, ',', '.') }} |
{{ ucfirst($transaction->payment_method) }}
@if($transaction->order_type === 'booking' && $transaction->booking_status)
{{ $bookingStatusLabels[$transaction->booking_status] ?? $transaction->booking_status }} @endif |
| 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, ',', '.') }} | |||||