@extends('layouts.app') @section('title', 'Manage โ€” '.$sector->name) @section('page-title', 'PACA โ€” '.$sector->icon.' '.$sector->name) @section('content')
โ† PACA Admin / {{ $sector->name }} Edit Sector Settings
{{-- Achievements --}}

๐Ÿ† Achievements ({{ $sector->achievements->count() }})

+ Add
@forelse($sector->achievements as $a)

{{ $a->title }}

@if($a->metric)

{{ $a->metric }}

@endif

{{ $a->term }} ยท {{ $a->region }}

@if($a->talking_point)

{{ $a->talking_point }}

@endif
{{ ucfirst($a->evidence_grade) }} Edit
@csrf @method('DELETE')
@empty

No achievements yet.

Add first achievement โ†’
@endforelse
{{-- Comparatives --}}

๐Ÿ“Š Comparatives ({{ $sector->comparatives->count() }})

{{-- Add comparative inline --}}

+ Add Comparative

@csrf
{{-- Existing comparatives --}}
@foreach($sector->comparatives as $comp)

{{ $comp->indicator }}

{{ $comp->npp_data }} vs {{ $comp->ndc_data }}
{{ $comp->edge_label }}
@csrf @method('DELETE')
@endforeach
@endsection