@extends('layouts.app') @section('title', 'Branches') @section('page-title', 'Branch Management') @section('content') {{-- Branch cards --}}
@foreach($branches as $branch)
{{ $branch->name }}
{{ $branch->code }}
@if($branch->is_headquarters) HQ @endif @if($branch->is_active) Active @else Inactive @endif
@if($branch->city || $branch->address)
{{ implode(', ', array_filter([$branch->city, $branch->address])) }}
@endif @if($branch->manager_name)
{{ $branch->manager_name }}
@endif
{{ $branch->users_count }}
Users
{{ $branch->products_count }}
Products
{{ $branch->sales_count }}
Sales
This month ${{ number_format($branch->monthly_revenue, 2) }}
Inventory value ${{ number_format($branch->inventory_value, 2) }}
@endforeach
@endsection