'Show a ribbon in Laravel 8

I am using Laravel 8 for my shop containing products. I also have flash sales and free files. Now I want to use a ribbon, but the ribbon also shows on the free file?

**index.blade.php **

<div>
    @if($featured->item_flash === 1)
        <div class="ribbon4 rib4-primary">
        <span class="ribbon4-band ribbon4-band-primary text-white text-center">
            50% Sell
        </span>
        </div>
    @endif
</div>


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source