Commission members

Directory of commissioners linked to user accounts. Link a user to give them the Commissioner role and allow assignment to boundaries.

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @if($commissionMemberEdit ?? null)

Edit commission member

@csrf
Linking assigns ROLE_COMMISSIONER to this user; unlinking removes it.
Cancel
@else

Add commission member

@csrf
Optional. Linking assigns ROLE_COMMISSIONER to this user.
@endif @if(empty($commissionMembers) || $commissionMembers->isEmpty())

No commission members recorded yet.

@else
@foreach($commissionMembers as $m) @endforeach
User (login) Name Role Assigned region Contact Status Actions
{{ $m->user ? $m->user->authority : '—' }} {{ $m->name }} {{ $m->role ?? '—' }} {{ $m->assigned_region ?? '—' }} {{ $m->email ?: ($m->phone ?: '—') }} {{ $m->status }} Edit
@csrf
@endif