{{ trans('plugins/branches::branches.our_branches') }}

{{ trans('plugins/branches::branches.branches_description') }}

@if(isset($allBranches) && count($allBranches) > 0)

{{ trans('plugins/branches::branches.branches_map') }}

@endif
@forelse($countries as $country)
@if($country->flag_image) {{ $country->name }} @endif

{{ $country->name }}

{{ strtoupper($country->code) }}
@foreach($country->activeBranches as $branch)

{{ $branch->name }}

@if($branch->location)
{{ $branch->location }}
@endif @if($branch->manager_name)
{{ $branch->manager_name }}
@endif @if($branch->phone)
{{ $branch->phone }}
@endif @if($branch->email)
{{ $branch->email }}
@endif
@if($branch->hasCoordinates()) @endif @if($branch->phone) @endif @if($branch->email) @endif
@endforeach
@if($country->activeBranches->isEmpty())

{{ trans('plugins/branches::branches.no_branches_found') }}

{{ trans('plugins/branches::branches.no_branches_in_country', ['country' => $country->name]) }}

@endif
@empty

{{ trans('plugins/branches::branches.no_countries_found') }}

{{ trans('plugins/branches::branches.no_countries_description') }}

@endforelse