Customer's List Report

As of {{ date('d M Y') }}
Total Customers: {{ count($suppliers) }}
Report Type: Balance Statement
@php $total = 0; @endphp @forelse($suppliers as $index => $supplier) @php $total += $supplier->balance ?? 0; @endphp @empty @endforelse
# Customer Name Contact Balance
{{ $index + 1 }} {{ $supplier->name }} {{ $supplier->contact ?: '-' }} {{ $supplier->balance ? number_format($supplier->balance, 2) : '0.00' }}
No customers found
Total ({{ count($suppliers) }} customers) {{ number_format($total, 2) }}