@forelse($transactions as $t) @empty @endforelse
Invoice Tanggal Kasir Total Status Aksi
{{ $t->invoice_number }} @if($t->branch)
{{ $t->branch->name }}
@endif
{{ $t->created_at->format('d M Y, H:i') }}
{{ strtoupper(substr($t->user->name, 0, 1)) }}
{{ $t->user->name }}
Rp {{ number_format((float) $t->total, 0, ',', '.') }} {{ ucfirst($t->status) }}
@if($t->status === 'completed')
@csrf
@endif

Tidak ada transaksi ditemukan

@if($transactions->hasPages())
{{ $transactions->links() }}
@endif