@extends('layouts.admin') @section('title', 'Branches') @section('subtitle', 'Manage store locations') @section('actions') + Add Branch @endsection @section('content')
@forelse($branches as $branch)
🏪
✏️ @if($branch->users->count() == 0 && $branch->invoices->count() == 0)
@csrf @method('DELETE')
@endif

{{ $branch->name }}

{{ $branch->code }}

@if($branch->address)
📍 {{ $branch->address }}
@endif @if($branch->phone)
📞 {{ $branch->phone }}
@endif
👥 {{ $branch->users->count() }} users 📦 {{ $branch->stock->count() }} products
@if($branch->is_active) Active @else Inactive @endif
@empty

🏪

No branches found

Add your first branch
@endforelse
@endsection