@extends('admin.layouts.app') @section('title','Volunteer Report') @section('breadcrumb') / Reports / Volunteers @endsection @section('content')
Clear
Total Volunteers
{{ $summary['total'] }}
Active
{{ $summary['active'] }}
Departments
{{ $summary['by_dept']->count() }}
Availabilities
{{ $summary['by_avail']->count() }}
Volunteer Records
{{ $volunteers->count() }} records
@forelse($volunteers as $v) @empty @endforelse
IDNameMobileAvailabilityDepartmentProjectStatus
{{ $v->volunteer_id }} {{ $v->name }} {{ $v->mobile }} {{ ucfirst(str_replace('_',' ',$v->availability)) }} {{ $v->department->name ?? '—' }} {{ $v->assignedProject->project_title ?? '—' }} {{ ucfirst($v->status) }}
No volunteers found
@endsection @push('scripts') @endpush