@extends('layouts.app') @section('title', 'Communicator Registry') @section('page-title', 'Communicator Registry') @section('content')
{{-- Filter bar --}}
Clear + Add Communicator
{{-- Table --}}
{{ $communicators->total() }} communicators found
@forelse($communicators as $c) @empty @endforelse
Name Phone Region Tier Status Languages
{{ strtoupper(substr($c->name, 0, 2)) }}
{{ $c->name }} @if($c->constituency)
{{ $c->constituency }}
@endif
{{ $c->full_phone }} {{ $c->region?->name ?? '—' }} @if($c->tier) {{ $c->tier->name }} @else @endif {{ ucfirst($c->status) }} {{ $c->languages_list ?: '—' }} Edit
No communicators found
@if($communicators->hasPages())
{{ $communicators->links() }}
@endif
@endsection