| Collection # |
Savings Account |
Customer |
Amount |
Collection Date |
Payment Method |
Actions |
@forelse($collections as $collection)
| {{ $collection->collection_number }} |
{{ $collection->savingsAccount->savings_number }} |
{{ $collection->customer->name }} |
₹{{ number_format($collection->amount, 2) }} |
{{ $collection->collection_date->format('d M Y') }} |
{{ ucfirst(str_replace('_', ' ', $collection->payment_method)) }} |
|
@empty
| No collections found. |
@endforelse
{{ $collections->links() }}