Hot Sale Management
{{-- Header --}}

Hot Sale Products

Select and order products for the homepage Hot Sale section

Add Product to Hot Sale
@if(session('success'))
{{ session('success') }}
@endif {{-- Table Container --}}
@forelse($hotSales as $hotSale)
@if($hotSale->product->image) @else
@endif

{{ $hotSale->product->name }}

ORDER #{{ $hotSale->order }} — {{ $hotSale->status ? 'ACTIVE' : 'HIDDEN' }}

@csrf @method('DELETE')
@empty
No hot sale products found
@endforelse