@php /** * @name Pagina cliente * @version 1.0.0 */ @endphp @extends('app') @section('content') @php $google_api = call_setting('settings.other.googlemaps_api') ? call_setting('settings.other.googlemaps_api') : false; @endphp
@get_template_part('page.customer.parts.info', null, ['customer' => $customer])
@if ($google_api !== false)
@get_template_part('page.customer.parts.map', null, ['customer' => $customer])
@endif
@endsection