@include('shop.partials.section-header', [
'title' => __('shop.home.new_arrivals'),
'moreUrl' => route('catalog'),
'moreLabel' => __('shop.home.see_more'),
])
@foreach($latest as $product)
@include('shop.partials.product-card', ['product' => $product, 'badge' => __('shop.badges.new')])
@endforeach