@extends('layouts.app') @section('content')
{{-- Page Header --}}

🎯 MP Coordinators

{{-- Summary Card --}}
Total MP Coordinators

{{ $totalMpCoordinators }}

{{-- Filters --}}
{{-- MP Coordinators Table --}} @if($mpCoordinators->isEmpty())
No MP coordinators found.
@else
@foreach($mpCoordinators as $mp) @endforeach
# Name ID Number Email Phone Sub-County Center Joined At Last Updated
{{ $loop->iteration }} {{ $mp->name }} {{ $mp->id_number }} {{ $mp->email ?? '-' }} {{ $mp->phone ?? '-' }} {{ $mp->subCounty?->name ?? '-' }} {{ $mp->center?->name ?? '-' }} {{ $mp->created_at->format('d M Y') }} {{ $mp->updated_at->format('d M Y') }}
@endif {{-- Footer --}}
NYOTA System © {{ date('Y') }}
@endsection @section('scripts') @endsection