@extends('frontend::layouts.master') @section('content') @php $breadcrumbs = [ [ 'title' => $menu_index['name'] ?? '', 'url' => $menu_index['url'] ?? 'javascript:void(0)', ], [ 'title' => $menu_contact['name'] ?? '', 'url' => $menu_contact['url'] ?? 'javascript:void(0)', ], ]; $contact = $page_init['contact'] ?? []; @endphp

{{ $menu_contact['name'] ?? '' }}

{{ $contact['desc'] ?? '' }}

@if (!empty($contact['office']))
{{ __('frontend::lang.contact.location') }}

{{ $contact['office'] ?? '' }}

@endif @if (!empty($contact['tel']) || !empty($contact['mobile'][0]))
{{ __('frontend::lang.contact.call_us') }}

{{ __('frontend::lang.footer.tel') }} :
@foreach ($contact['mobile'] as $m) @if (!empty($m)) @endif @endforeach @if (!empty($contact['fax']))
{{ __('frontend::lang.footer.fax') }} :
@endif

@endif @if (!empty($contact['email']))
{{ __('frontend::lang.contact.email_us') }}

{{ $contact['email'] }}

@endif
@if (!empty($contact['image']))
{{ $menu_contact['name'] ?? '' }}
@endif
{{ $contact['name'] ?? '' }}

{{ $contact['name'] ?? '' }}

@if (!empty($contact['office']))
{{ $contact['office'] ?? '' }}
@endif
@if (!empty($contact['gmap']))
{!! $contact['gmap'] !!}
@endif @endsection