@extends('layouts.app') @section('title', 'Wakil Agensi') @section('content')
Admin

Wakil Polis, KKM dan JKM

Kemasukan manual wakil agensi untuk Pusat Mengundi dan Saluran.

@include('admin.management._nav')

Tambah Wakil

@csrf
@foreach ([['title' => 'Polis Pengiring', 'items' => $policeEscorts, 'type' => 'police'], ['title' => 'Wakil KKM', 'items' => $kkmRepresentatives, 'type' => 'kkm'], ['title' => 'Wakil JKM', 'items' => $jkmRepresentatives, 'type' => 'jkm']] as $section)
{{ $section['title'] }}
@forelse ($section['items'] as $item) @empty @endforelse
NamaPusatTelefonNotaTindakan
{{ $item->name }}
{{ $item->ic_number ?: '-' }}
{{ $item->pusatMengundi?->code }} @if($section['type'] === 'police' && $item->saluranMengundi) ยท Saluran {{ $item->saluranMengundi->number }} @endif {{ $item->phone_number ?: '-' }} {{ $item->notes ?: '-' }}
@csrf @method('DELETE')
Tiada rekod.
{{ $section['items']->links() }}
@endforeach @endsection