@extends('admin.layout') @section('title', 'Kelola Relawan') @section('subtitle', 'Tambah, edit, dan hapus data relawan') @section('content')

Total: {{ $volunteers->count() }} relawan

@if ($volunteers->count() > 0)
@csrf
@endif
{{-- Import Section (hidden by default) --}}
@if ($volunteers->count())
@foreach ($volunteers as $idx => $vol) @endforeach
# Nama PIN Bagian Kerja Aksi
{{ $idx + 1 }}
{{ substr($vol->name, 0, 1) }}
{{ $vol->name }}
{{ $vol->pin }} @php $assignment = $vol->volunteerAssignments->first(); @endphp @if ($assignment) {{ $assignment->workSection->name }} @else Belum ditugaskan @endif
@csrf @method('DELETE')
@else
Belum ada data relawan. Klik tombol "Tambah Relawan" untuk memulai.
@endif
{{-- MODAL FORM --}} @endsection @push('scripts') @endpush