@extends('layouts.app') @section('title', $brand->name) @php $style = 'category'; @endphp @section('content')
{{-- Хлебные крошки --}} {{-- Шапка бренда --}}
@if($brand->logo) {{ $brand->name }} @endif

{{ $brand->name }}

@if($brand->description) {{ $brand->description }} @endif
{{-- Продукты --}}
{{-- Категории с полным путем --}} @if($categoriesWithPath->count())

Категории

@foreach($categoriesWithPath as $category)
id, request('categories', [])) ? 'checked' : '' }}>
@endforeach
@endif {{-- Цена --}}

Цена

@include('categories.partials.ui-slider', [ 'field' => 'price', 'max' => $maxPrice, 'min' => $minPrice, 'step' => 25, 'currentMin' => request('price-min', $minPrice), 'currentMax' => request('price-max', $maxPrice) ])
{{-- Кнопки --}}
Сбросить
{{-- БЛОК С КАРТОЧКАМИ --}}
@if($products->count())
@foreach($products as $product) @include('products.partials.product-card', compact('product')) @endforeach
{{ $products->links() }} @else
Товары этого бренда пока отсутствуют.
@endif
@endsection @section('script') @endsection