@extends('layouts.app') @section('title', 'PACA Constituencies') @section('page-title', 'PACA — Constituencies') @section('content')
← PACA Admin /Constituencies
{{-- Add form --}}

+ Add Constituency

@csrf
{{-- Table --}}
@forelse($constituencies as $c) @empty @endforelse
Constituency Region MP Seat NPP % NDC %
{{ $c->name }} {{ $c->region?->name }} {{ $c->mp_name ?: '—' }} {{ $c->seat_label }} {{ $c->npp_vote_pct ? $c->npp_vote_pct.'%' : '—' }} {{ $c->ndc_vote_pct ? $c->ndc_vote_pct.'%' : '—' }}
@csrf @method('DELETE')
No constituencies yet.
@if($constituencies->hasPages())
{{ $constituencies->links() }}
@endif
@endsection