@extends('master') @section('seo_title', $seoTitle . ' | ' . __('messages.ONLINE_STORE')) @section('seo_keywords', '') @section('seo_description', '') @section('content') @php $nameCategoryOrSubOrSuper = null; $categoriesBaseUrlComplete = $subcategoryUrl !== null ? $categoriesBaseUrl . '/' . $subcategoryUrl : $categoriesBaseUrl; if (is_null($subCategory) === false) { $nameCategoryOrSubOrSuper = $subCategory->name; } else if (is_null($category) === false) { $nameCategoryOrSubOrSuper = $category->name; } else { $nameCategoryOrSubOrSuper = $superCategory->name; } @endphp

{{ $nameCategoryOrSubOrSuper }}

{{--

Donec aliquam mauris ac porta imperdiet. Sed ut accumsan ex.

--}}
@include('layout.breadcrumbs', [ 'page_title' => $nameCategoryOrSubOrSuper, 'page_before' => $categoriesBaseUrlComplete, 'filters' => true ])
{{--
--}}
@if (count($products) > 0)
@foreach ($products as $product)
@include('shared.product', [ 'product' => $product, 'moreCols' => false, 'smallerFont' => true, ])
@endforeach

{{-- Pagination --}} {{ $pagination->links() }}
@else
@lang('messages.NO_PRODUCTS_FOUND')
@endif
@include('layout.back-button')
@include('products.filters', [ 'brands' => $brands, 'categoryChildren' => $categoryChildren, 'queries' => $queries ]) @endsection