@extends('layouts.frontend.app') @section('title', 'Branch Location') @section('style') @endsection @section('script') {!! $schema !!} @endsection @section('page-banner') @endsection @section('content')

{{ $branch->title }}

@php $url = 'javascript:void(0)'; $hasLink = false; if(!empty($branch->url)){ $url = $branch->url; $hasLink = true; }elseif(!empty($branch->lat) && !empty($branch->long)){ $url = "http://maps.google.com?q={$branch->lat},{$branch->long}"; $hasLink = true; } @endphp

{{ $branch->title }}

  • {{ trans('branch.manager') }}: {{ $branch->fullname }}
  • {{ $branch->address }}
  • {!! $branch->phone !!}
  • {{ $branch->email }}
@endsection