@extends('layouts.app') @section('title', 'Branch Management - Axis Max Life Admin') @section('content')

Branch Management

+ Add New Branch

Total Branches

{{ $branches->count() }}

Total Uploads

{{ $totalUploads }}

Active Branches

{{ $branches->where('images_count', '>', 0)->count() }}

@if(session('success'))
{{ session('success') }}
@endif
@forelse($branches as $branch) @empty @endforelse
Branch Code Branch Name Images Uploaded Actions
{{ $branch->branch_code }} {{ $branch->branch_name ?? 'N/A' }} {{ $branch->images_count }}/5 View
@csrf @method('DELETE')
No branches found. Add your first branch
@endsection