{{-- resources/views/branches/index.blade.php --}} @extends('layouts.app') @section('content')

Branch Management

Comprehensive branch directory and management system

{{ count($branches) }}
Total Branches
{{ $branches->unique('district_id')->count() }}
Districts Covered
{{ $branches->unique('region_id')->count() }}
Regions
{{ $branches->where('created_at', '>=', now()->startOfYear())->count() }}
New This Year
Branch Directory {{ count($branches) }} branches
@foreach($branches as $branch) @endforeach
# 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') }}
@endsection