{{ $row->first_name }} {{ $row->last_name }}
{{ $row->created_at ? $row->created_at->format('d M, Y') : '—' }}
@if ($row->company_name)
{{ $row->company_name }}
@endif
@if ($row->service_needed || $row->number_of_assets || $row->asset_type)
@if ($row->service_needed)
{{ $row->service_needed }}
@endif
@if ($row->number_of_assets)
{{ $row->number_of_assets }}
@endif
@if ($row->asset_type)
{{ $row->asset_type }}
@endif
@endif
@if ($row->preferred_pickup_date)
{{ \Carbon\Carbon::parse($row->preferred_pickup_date)->format('M d, Y') }}
@endif
@if ($row->additional_details)
{{ $row->additional_details }}
@endif
@if ($row->equipment_list)
@endif
@if ($row->product_images)
@php
$imgs = is_array($row->product_images)
? $row->product_images
: json_decode($row->product_images, true);
@endphp
@if (!empty($imgs))
@foreach ($imgs as $img)
@endforeach
@endif
@endif
IP: {{ $row->ip_address }}