View boundaries under your jurisdiction. Access is logged for accountability. Export GeoJSON for briefing maps (Framework UC7).
@php $roleLabel = match($agencyRole ?? '') { \App\Helpers\DashboardHelper::ROLE_POLICE => 'Police', \App\Helpers\DashboardHelper::ROLE_MILITARY => 'Military', \App\Helpers\DashboardHelper::ROLE_DSS => 'DSS', \App\Helpers\DashboardHelper::ROLE_NSCDC => 'NSCDC', default => 'All (admin)', }; @endphpView as: {{ $roleLabel }}
@if(empty($agencyPortalBoundaries) || $agencyPortalBoundaries->isEmpty())No boundaries in your jurisdiction, or no jurisdiction filter applied. Admins see all boundaries.
@else| Boundary # | Name | Type | Jurisdiction | Actions |
|---|---|---|---|---|
| {{ $b->boundary_number }} | {{ $b->name }} | {{ $b->boundary_type }} | @if($b->police_command) Police: {{ Str::limit($b->police_command, 20) }} @endif @if($b->military_formation) Military: {{ Str::limit($b->military_formation, 20) }} @endif @if($b->dss_zone) DSS: {{ Str::limit($b->dss_zone, 20) }} @endif @if($b->nscdc_region) NSCDC: {{ Str::limit($b->nscdc_region, 20) }} @endif @if(!$b->police_command && !$b->military_formation && !$b->dss_zone && !$b->nscdc_region) — @endif | View Export GeoJSON |