@if ($ads->count() > 0) @foreach ($ads as $index => $ad)
@if ($ad->images->count() > 0) User Profile Image @else No Image @endif
{{ $ad->title ?? '' }}

State: {{ $ad->state ?? '' }}

Uploaded: {{ $ad->created_at }}

Price: {{ config('app.currency_symbol') }} {{ number_format($ad->price, 2) }}
@if (($index + 1) % 12 == 0)
@endif @endforeach {{ $ads->links('pagination::bootstrap-5') }} @else

No ads available at the moment.

@endif