@extends('layouts.app') @section('title', 'Savings Collections') @section('page-title', 'Savings Collections') @section('content')
All Savings Collections
Record Collection
@forelse($collections as $collection) @empty @endforelse
Collection # Savings Account Customer Amount Collection Date Payment Method Actions
{{ $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)) }}
No collections found.
{{ $collections->links() }}
@endsection