@if($ps->hot_sale == 1)

{{ __("Hot") }}
Post it

@foreach($hot_products as $prod)
    @include('includes.product.list-product')
@endforeach

{{ __("New") }}
Post it

@foreach($latest_products as $prod)
    @include('includes.product.list-product')
@endforeach

{{ __("Trending") }}
Post it

@foreach($trending_products as $prod)
    @include('includes.product.list-product')
@endforeach

{{ __("Sale") }}
Post it

@foreach($sale_products as $prod)
    @include('includes.product.list-product')
@endforeach
@endif