@extends('admin.layouts.app') @section('title','Beneficiaries') @section('breadcrumb') / Beneficiaries @endsection @section('content')
Manage beneficiaries and assistance records
| S.N. | ID | Name | Mobile | Gender | Category | Project | Assistance | Status | Actions |
|---|---|---|---|---|---|---|---|---|---|
| {{ ($beneficiaries->currentPage()-1)*$beneficiaries->perPage()+$i+1 }} | {{ $ben->beneficiary_id }} |
{{ $ben->name }}
@if($ben->guardian_name)
{{ ucfirst($ben->guardian_relation??'Guardian') }}: {{ $ben->guardian_name }}
@endif
|
{{ $ben->mobile ?? '—' }} | @if($ben->gender) {{ ucfirst($ben->gender) }} @else — @endif | {{ $ben->category ?? '—' }} | {{ Str::limit($ben->project?->project_title,25) ?? '—' }} | {{ $ben->assistance_type ?? '—' }} | {{ ucfirst($ben->status) }} | |
|
No beneficiaries found @if(auth()->user()->hasPermission('beneficiaries.create')) Add Beneficiary @endif |
|||||||||