@foreach ($leads as $row)
{{ $row->buyer_name ?? '' }} is looking for {{ $row->product_name ?? '' }}
Posted on {{ date('d-m-Y', strtotime($row->created_at)) }}
{{--

{{ $row->buyer_name ?? '' }} is looking for {{ $row->product_name ?? '' }}.

--}}

Contact buyer with your best offer.

Buyer details

Name: {{ $row->buyer_name ?? '' }}

Phone: {{ $row->phone ?? '' }}

City: {{ $row->city ?? 'Hyderabad' }}

{{--
--}}
@endforeach {{--
--}}