@extends('front.layouts.master') @section('metaTags')
{{ getMetaTag($category, 'meta_title', $category->title) }}
{!! $category->getTranslation('schema', LaravelLocalization::getCurrentLocale(), false) !!} @endsection @section('content')
{{ __('general.home') }}
@foreach ($category->ancestors as $ancestor)
{{ $ancestor->name }}
@endforeach
{{ $category->name }}
{{-- @if(count($relatedVendors))--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{-- @foreach ($relatedVendors as $relatedVendor)--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
{{ $relatedVendor->name }}
--}} {{--
--}} {{--
--}} {{-- @endforeach--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{-- @endif--}}
@if ($category->getTranslation('title', app()->getLocale(), false))
{{ $category->getTranslation('title', app()->getLocale(), false) }}
@if ($category->getTranslation('desc', app()->getLocale(), false))
{!! $category->getTranslation('desc', app()->getLocale(), false) !!}
@endif
@endif
@if (is_individual() && $maxPrice > 0)
{{ __('general.price') }}
{{ __('general.price') }}:
{{ $minPrice }}
{{ getCurrency('symbol') }}
ΓÇö
{{ $maxPrice }}
{{ getCurrency('symbol') }}
{{ __('general.search_button') }}
@endif @foreach ($category->attributes as $attribute)
{{ $attribute->key }}
@foreach ($attribute->values as $value)
id . '-' . $value->id, explode(',', ((string) request()->input('filter.attributes'))))) checked @endif value="{{ $attribute->id . '-' . $value->id }}" id="{{ $attribute->id . '_' . $value->id }}">
{{ $value->value }}
@endforeach
@endforeach @if (count($siblings))
{{ __('general.categories') }}
@foreach ($siblings as $sibling)
id == $category->id) style="font-weight: bold" @endif href="{{ route('front.category', [generatedNestedSlug($sibling->getRelation('ancestors')->pluck('slug')->toArray(), $sibling->slug)]) }}">{{ $sibling->name }}
@endforeach
@endif @if (count($tags))
{{ __('general.search_tags') }}
@foreach ($tags as $tag)
{{ $tag->name }}
({{ count($tag->products) }})
@endforeach
@endif
@if ($category->getTranslation('desc', app()->getLocale(), false))
{!! $category->getTranslation('desc', app()->getLocale(), false) !!}
@endif @if (count($category->getRelation('children')))
@foreach ($category->getRelation('children') as $child)
{{$child->name}}
@endforeach
@endif
@foreach ($category->attributes as $attribute)
{{ $attribute->key }}
@endforeach
@foreach ($category->attributes as $attribute)
{{ $attribute->key }}
@foreach ($attribute->values as $value)
id . '-' . $value->id, explode(',', ((string) request()->input('filter.attributes'))))) checked @endif value="{{ $attribute->id . '-' . $value->id }}" id="{{ $attribute->id . '_' . $value->id }}">
{{ $value->value }}
@endforeach
@endforeach
@include('front.category.productsContainer', [ 'category' => $category, 'products' => $products, ])
@endsection @section('extraScripts') @if (is_individual() && $maxPrice > 0)
@endif @endsection