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