Showing bills from 01/01/2026 upto selected date. {{ number_format($billCount) }} bill(s) with pending balance  |  Total outstanding: ₹{{ number_format($totalBalance, 2) }}
@forelse($data as $index => $result) @empty @endforelse
Sr.No Bill No Sale Date Delivery Date Patient Name Subtotal Advance Balance Payment Mode Action
{{ $index + 1 }} {{ $result->BillNo }} {{ date('d/m/Y', strtotime(str_replace('-', '/', $result->SaleDate))) }} {{ $result->DeliveryDate ? date('d/m/Y', strtotime(str_replace('-', '/', $result->DeliveryDate))) : '' }} {{ $result->PatientName }} ₹{{ number_format($result->SubTotal, 2) }} ₹{{ number_format($result->Advance ?? 0, 2) }} ₹{{ number_format($result->NetAmount, 2) }} {{ $result->PayMode }}
No outstanding bills found.