Create a featured section

PHOTO EMBED

Fri Jul 11 2025 00:54:01 GMT+0000 (Coordinated Universal Time)

Saved by @Joe_Devs #php #laravel

@foreach( $listings as $listing)
@if($listing['is_featured'])
<div class="bg-gray-50 rounded-lg shadow-md overflow-hidden">
    <div class="p-6">
        <h3 class="text-xl font-semibold text-gray-800 mb-2">{{ $listing['address']}}</h3>
        <p class="text-gray-600 mb-4">${{ number_format( $listing['price'])}} • {{ $listing['bed']}}
            Bed
            • {{ $listing['bath']}} Bath</p>
    </div>
</div>
@endif
@endforeach
content_copyCOPY

- make sure that in your table, there is a col for featured item. (featured, is_featured). - loop through all the items