@extends('layouts.front-end.app') @section('title', translate('Branches')) @push('css_or_js') @endpush @section('content')

{{ translate('Branches')}}

@if(isset($branches) && $branches->count() > 0) @foreach($branches as $branch)
{{$branch->name}}

{{$branch->address}}

@foreach(json_decode($branch->phones) as $key => $phone)

{{translate('Phone')}} {{$key + 1}} : {{$phone}}

@endforeach {{translate('Get Directions')}}
@endforeach @endif
@endsection @push('script') @endpush