@extends('layouts.shop') @section('title', __('shop.meta.default_title')) @section('content') @include('shop.partials.hero-slider') @include('shop.partials.category-circles') @if($popular->count())
@include('shop.partials.section-header', [ 'title' => __('shop.home.most_searched'), 'moreUrl' => route('catalog', ['populares' => 1]), 'moreLabel' => __('shop.home.see_more'), ])
@foreach($popular as $product) @include('shop.partials.product-card', ['product' => $product]) @endforeach
@endif @if($promotions->count())
@include('shop.partials.section-header', [ 'title' => __('shop.home.promotions'), 'moreUrl' => route('catalog', ['promocao' => 1]), 'moreLabel' => __('shop.home.see_more'), ])
@foreach($promotions as $product) @include('shop.partials.product-card', ['product' => $product]) @endforeach
@endif @if($latest->count())
@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
@endif @if($featured->count())
@include('shop.partials.section-header', [ 'title' => __('shop.home.featured'), 'moreUrl' => route('catalog'), 'moreLabel' => __('shop.home.see_more'), ])
@foreach($featured as $product) @include('shop.partials.product-card', ['product' => $product]) @endforeach
@endif

{{ __('shop.home.events_title') }}

{{ __('shop.home.events_text') }}

{{ __('shop.home.events_button') }}
@endsection