@extends('layouts.app') @section('content')

Volunteers

Review and approve volunteer applications.

@if(session('success'))
{{ session('success') }}
@endif
Reset
@if(!empty(array_filter($filters)))
@foreach($filters as $key => $value) @if($value) {{ ucfirst($key) }}: {{ $value }} @endif @endforeach
@endif
@foreach($volunteers as $v) @endforeach
Name Area Roles Specialty Status Actions
{{ $v->first_name }} {{ $v->last_name }}
{{ $v->phone }}
{{ $v->area }} @foreach($rolesMap[$v->id] ?? [] as $r) {{ $r->role }} @endforeach {{ $v->specialty }} {{ $v->status }} @if($v->status == 'pending')
@csrf
@csrf
@else {{ ucfirst($v->status) }} @endif
{{ $volunteers->links() }}
@endsection