@extends('Shop.layout.layout', [
'title' => __('home.title'),
])
@section('content')
@include('Shop.Tags.partials.filter')
{{ $category['name'] }}
{!! $category['description'] !!}
@include('Shop.layout.partials.category_add')
@if ($display_by_rows ?? false)
@include('Shop.layout.partials.category_articles_rows')
@else
@include('Shop.layout.partials.category_articles')
@endif
@endsection