@extends('layouts.admin') @section('title', 'Daily Savings') @section('page-title', 'Daily Savings') @section('page-subtitle', 'Track member contribution collections') @section('content')

Today's Collections

₦{{ number_format($totalToday) }}

Pending Reconciliation

{{ $pendingCount }}

Record Savings @if(in_array(session('admin_role'), ['admin','manager','cashier']))
@csrf
@endif
@forelse($savings as $s) @empty @endforelse
Reference Member Amount Date Method Collected By Status Actions
{{ $s->reference }} {{ $s->member->full_name ?? '-' }} ₦{{ number_format($s->amount) }} {{ $s->collection_date->format('d M Y') }} {{ $s->payment_method }} {{ $s->collector_name ?? '-' }} {{ ucfirst($s->status) }}
@csrf @method('DELETE')
No savings records yet.
{{ $savings->links() }}
@endsection