{{-- resources/views/branches/index.blade.php --}} @extends('layouts.app') @section('content')
@php $col_class = 'col-xl col-lg-4 col-md-6'; @endphp

Total Branches

{{ count($branches) }}

Districts Covered

{{ $branches->unique('district_id')->count() }}

Regions

{{ $branches->unique('region_id')->count() }}

New This Year

{{ $branches->where('created_at', '>=', now()->startOfYear())->count() }}
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') }}
{{ $branches->links('pagination::bootstrap-5') }}
@endsection