@extends('admin.layouts.app') @section('title','Beneficiary Report') @section('breadcrumb') / Reports / Beneficiaries @endsection @section('content')
@if($from || $to) {{ $from?->format('d M Y') ?? 'Beginning' }} — {{ $to?->format('d M Y') ?? 'Till Date' }} @else All Time @endif
| ID | Name | Mobile | Gender | Category | Project | Assistance Total | Status |
|---|---|---|---|---|---|---|---|
{{ $b->beneficiary_id }} |
{{ $b->name }} | {{ $b->mobile ?? '—' }} | {{ ucfirst($b->gender ?? '—') }} | {{ $b->category ?? '—' }} | {{ $b->project->project_title ?? '—' }} | ₹{{ number_format($b->total_assistance,2) }} | {{ ucfirst($b->status) }} |
| No beneficiaries found | |||||||
| TOTAL | ₹{{ number_format($summary['total_assistance'],2) }} | ||||||