Name:
{{ ucfirst($customer->user->name) ?? 'N/A' }}
Email:
{{ $customer->user->email ?? 'N/A' }}
Phone Number:
@if ($customer->user->country_code && $customer->user->phone)
{{ $customer->user->country_code }}{{ $customer->user->phone }}
@else
N/A
@endif
Topic:
{{ $customer->topic->topic ?? 'N/A' }}
Message:
{!! ucfirst($customer->message ?? 'N/A') !!}
Image:
@if ($customer->user->profileImage)
 }})
@else
No image available
@endif
Response: