29 lines
1.2 KiB
PHP
29 lines
1.2 KiB
PHP
@php
|
||
$items = $products ?? collect();
|
||
@endphp
|
||
|
||
<section class="pc-section">
|
||
<div class="pc-section-title">
|
||
<h2>{{ __($title ?? 'Товары') }}</h2>
|
||
@if (!empty($description))
|
||
<p>{{ __($description) }}</p>
|
||
@endif
|
||
</div>
|
||
|
||
@if ($items->isEmpty())
|
||
<div class="pc-card">{{ __($emptyText ?? 'Пока нет товаров.') }}</div>
|
||
@else
|
||
<div class="pc-product-carousel" data-product-carousel>
|
||
<button class="pc-product-carousel-btn is-prev" type="button" data-product-carousel-prev aria-label="{{ __('Предыдущие товары') }}">‹</button>
|
||
<div class="pc-product-carousel-track" data-product-carousel-track>
|
||
@foreach ($items as $product)
|
||
<div class="pc-product-carousel-item">
|
||
@include('partials.product-card', ['product' => $product])
|
||
</div>
|
||
@endforeach
|
||
</div>
|
||
<button class="pc-product-carousel-btn is-next" type="button" data-product-carousel-next aria-label="{{ __('Следующие товары') }}">›</button>
|
||
</div>
|
||
@endif
|
||
</section>
|