@extends('layouts.admin') @section('title', 'Manage Centers') @section('content')
Manage all registered government service centers.
| # | Code | Location & Contact | Center Owner | Status | Actions |
|---|---|---|---|---|---|
| {{ $centers->firstItem() + $i }} | {{ $center->code }} |
{{ $center->location }}
{{ $center->email ?: '—' }} | {{ $center->mobile_no ?: '—' }}
|
@php $owner = $center->users->first(); @endphp
@if($owner)
{{ $owner->name }}
{{ $owner->email }}
@else
—
@endif
|
@if($center->is_verified)
Verified
@else
Pending
@endif
@if($center->is_active)
Active
@else
Disabled
@endif
|
|
|
No centers found. Add one now!
|
|||||