@push('css') @endpush

Customer Details

{{ ___('Name') }}

{{ $customer->name ?? '-' }}

{{ ___('Company') }}

{{ $customer->company ?? '-' }}

{{ ___('Phone 1') }}

{{ $customer->phone_1 ?? '-' }}

{{ ___('Phone 2') }}

{{ $customer->phone_2 ?? '-' }}

{{ ___('Website') }}

{{ $customer->website ?? '-' }}

{{ ___('Email') }}

{{ $customer->email ?? '-' }}
{{--

{{ __('Target Keywords') }}

@php($keywords = $customer->targeted_keywords ? explode(',', $customer->targeted_keywords) : []) @if($keywords) @foreach($keywords as $keyword) {{ $keyword }} @endforeach @else - @endif

{{ __('Target Radius Mile') }}

{{ $customer->targeted_radius ?? '-' }}

{{ __('Yelp Profile Link') }}

@if($customer->yelp_profile) Click Here @else - @endif
--}}

{{ __('Additional Notes / Description') }}

{!! nl2br($customer->description) !!}

{{ ___('Address') }}

{{ $customer->address ?? '-' }}

{{ ___('City') }}

{{ $customer->city ?? '-' }}

{{ ___('State') }}

{{ $customer->state ?? '-' }}

{{ ___('Zip') }}

{{ $customer->zip ?? '-' }}

{{ ___('Country') }}

{{ $customer->country ?? '-' }}

{{ __('Status') }}

@include('panel.customers._status', ['customer' => $customer])
@if(\Gate::allows('customers-status-detail'))

{{ __('Status Time') }}

{{ $customer->status_datetime ? $customer->status_datetime->format('h:i A - F d, Y') : '-' }}

{{ __('Status Attachment') }}

@if($customer->getMedia('statusReason')->count()) Download Attachment @else No Attachment Found! @endif

{{ __('Status Reason') }}

{!! nl2br($customer->status_reason) !!}
@endif