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

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

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

{{ $country->name }}

{{ strtoupper($country->code) }}
{{ $country->activeBranches->count() }} {{ trans('plugins/branches::branches.branches') }}
@forelse($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())
{{ $branch->latitude }}, {{ $branch->longitude }}
@endif
@if($branch->hasCoordinates()) @endif @if($branch->phone) @endif @if($branch->email) @endif
@empty

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

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

{{ trans('plugins/branches::branches.view_all_countries') }}
@endforelse
@if(isset($branchesForMap) && count($branchesForMap) > 0)

{{ trans('plugins/branches::branches.branches_map') }} - {{ $country->name }}

@endif