@inject ('toolbarHelper', 'Webkul\Product\Helpers\Toolbar')
@inject ('productRepository', 'Webkul\Product\Repositories\ProductRepository')
@extends('shop::layouts.master')
@section('page_title')
{{ $category->meta_title ?? $category->name }}
@stop
@section('seo')
@stop
@push('css')
@endpush
@php
$isDisplayMode = in_array(
$category->display_mode, [
null,
'products_only',
'products_and_description'
]
);
$products = $productRepository->getAll($category->id);
@endphp
@section('content-wrapper')
@stop
@push('scripts')
@endpush