@if ($customer->getFullName(true, true)) {{ $customer->getFullName(true, true) }} @endif @php $channels = $customer->getChannels(); @endphp @if (count($channels))
@foreach ($channels as $channel){{ $channel->getChannelName() }}@endforeach{{ '' }}@action('customer.tags', $customer, $conversation ?? null)
@endif
@if ($customer->getSocialProfiles() || $customer->getWebsites())
@foreach ($customer->getWebsites() as $website) @endforeach @foreach ($customer->getSocialProfiles() as $sp) @endforeach
@endif @php $location = array_filter([$customer->city, $customer->state, $customer->getCountryName()]); @endphp @if ($customer->company || $customer->job_title || $location || $customer->address)
@if ($customer->company)
{{ $customer->company }}
@endif @if ($customer->job_title)
{{ $customer->job_title }}
@endif @if ($location)
{{ implode(', ', $location) }}
@endif @if ($customer->address)
{{ $customer->address }}
@endif
@endif @if ($customer->notes)
{{ $customer->notes }}
@endif @action('customer.profile.extra', $customer, $conversation ?? '')
@action('customer.profile_data', $customer, $conversation ?? '')