@extends('layouts.app') @section('title', 'PACA Admin') @section('page-title', 'PACA Administration') @section('content')
{{-- Stats --}}
@foreach([ ['Sectors', $stats['sectors'], 'bg-blue-50 text-blue-700'], ['Achievements', $stats['achievements'], 'bg-green-50 text-green-700'], ['Comparatives', $stats['comparatives'], 'bg-purple-50 text-purple-700'], ['Rebuttals', $stats['rebuttals'], 'bg-orange-50 text-orange-700'], ['Constituencies', $stats['constituencies'], 'bg-teal-50 text-teal-700'], ] as [$label, $count, $cls])
{{ $count }}
{{ $label }}
@endforeach
{{-- Quick links --}}
+ Add Sector Manage Rebuttals ({{ $stats['rebuttals'] }}) Manage Constituencies ({{ $stats['constituencies'] }}) ← View PACA (Communicator View)
{{-- Sectors table --}}

Sectors

@foreach($sectors as $sector) @endforeach
Sector NPP / NDC Achievements Comparatives Rebuttals
{{ $sector->icon }} {{ $sector->name }} NPP {{ $sector->npp_score }} NDC {{ $sector->ndc_score }} {{ $sector->achievements_count }} {{ $sector->comparatives_count }} {{ $sector->rebuttals_count }} Manage Edit
@csrf @method('DELETE')
@endsection