@extends('layout.app') @section('title') {!! $productCategory ? $productCategory->title : Translation::transText('breadcrumbs.catalog', 'Catalog') !!} @endsection @section('css') @stop @section('content')
@include('parts.header-panel') @include('parts.header')

@php if (!empty($productCategory)) { echo !empty($productCategory->h1) ? $productCategory->h1 : $productCategory->title; } else { echo Translation::trans('breadcrumbs.catalog', 'Catalog'); } @endphp

{!! Translation::trans('catalog.title', 'Kategoria produktu') !!}
arrow
{!! Translation::trans('catalog.filter.adhesive-layer', 'Adhesive layer') !!}
arrow
@php $glue = $input['glue'] ?? ''; $glueParams = explode(',', $glue); @endphp @foreach($filter['glue'] as $glueItem)
id, $glueParams) ? 'checked' : ''}} />
@endforeach
{!! Translation::trans('order.thickness', 'MKM') !!}
arrow
@php $thickness = $input['thickness'] ?? ''; $thicknessParams = explode(',', $thickness); @endphp @foreach($filter['thickness'] as $thicknessItem)
@endforeach
{!! Translation::trans('catalog.filter.width', 'Szerokość') !!}
arrow
@php $width = $input['width'] ?? ''; $widthParams = explode(',', $width); @endphp @foreach($filter['width'] as $widthItem)
@endforeach
{!! Translation::trans('catalog.filter.length', 'Długość') !!}
arrow
@php $length = $input['length'] ?? ''; $lengthParams = explode(',', $length); @endphp @foreach($filter['length'] as $lengthItem)
@endforeach
@if(!empty($filter['colors']))
{!! Translation::trans('catalog.filter.color', 'Kolor') !!}
arrow
@php $colors = $input['colors'] ?? ''; $colorsParams = explode(',', $colors); @endphp @for($i = 0;$i < count($filter['colors']);$i++)
@endfor
@endif {{--
--}} {{--
--}} {{--
--}} {{--
{!! Translation::trans('catalog.filter.price', 'Cena') }}
--}} {{--
--}} {{--
--}} {{-- --}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{-- --}} {{--
--}} {{-- 0--}} {{--
--}} {{--
--}} {{-- 2500--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}}
close icon
{{-- --}}
filter
{!! Translation::trans('catalog.filter.shown', 'Wyświetlanie') !!} {{ (($products->currentPage() -1)*$products->perPage()) + count($products)}} {!! Translation::trans('catalog.filter.from', 'z') !!} {{$products->total()}} {!! Translation::trans('catalog.filter.products', 'produktów') !!}
{!! Translation::trans('catalog.filter.sorting', 'Sortowanie') !!}:
@php $sort = $input['sort'] ?? ''; @endphp
@if($products->linkCollection()->count() > 3)
    @foreach($products->withQueryString()->linkCollection() as $link) @if($link['label'] === 'pagination.previous')
  • icon prev
  • @elseif($link['label'] === 'pagination.next')
  • icon next
  • @else
  • {{ $link['label'] }}
  • @endif @endforeach
@endif
@endsection @section('javascript') @endsection