@extends('layouts.app') @section('title', __('Branches')) @section('content')

{{ __('Organization Branches') }}

{{ __('Add Branch') }}

{{ $branches->total() }}

{{ __('Total Branches') }}

{{ $branches->where('status', 'active')->count() }}

{{ __('Active') }}

{{ $branches->where('type', 'retail')->count() }}

{{ __('Retail') }}

{{ $branches->where('type', 'office')->count() }}

{{ __('Offices') }}
@forelse($branches as $branch) @empty @endforelse
{{ __('Branch Name') }} {{ __('Type') }} {{ __('Parent Company') }} {{ __('Associated Factory') }} {{ __('Status') }} {{ __('Actions') }}
{{ $branch->name }}
{{ $branch->location ?? __('N/A') }}
{{ __(ucfirst($branch->type)) }} {{ $branch->company ? $branch->company->name : '-' }} {{ $branch->factory ? $branch->factory->name : __('None') }} @if($branch->status == 'active') {{ __('Active') }} @else {{ __('Inactive') }} @endif
{{ __('No branches found.') }}
@endsection