{{-- resources/views/districts/index.blade.php --}} @extends('layouts.app') @section('content')
| SN | District Name | Region | Created Date | Actions |
|---|---|---|---|---|
|
{{ $loop->iteration }}
|
{{ ucwords($district->name) }} | {{ $district->region->name ?? 'N/A' }} | {{ $district->created_at ? $district->created_at->format('F j, Y') : 'N/A' }} |
|