@extends('layouts.admin') @section('title', 'Agent Collections') @section('page-title', 'Agent Collections') @section('page-subtitle', 'View savings collected by agents') @section('content')
@forelse($collections as $s) @empty @endforelse
Reference Member Amount Date Collected By Status
{{ $s->reference }} {{ $s->member->full_name ?? '-' }} ₦{{ number_format($s->amount) }} {{ $s->collection_date->format('d M Y') }} {{ $s->collector_name ?? '-' }} {{ ucfirst($s->status) }}
No collections found.
{{ $collections->links() }}
@endsection