@extends('front::layouts.master', ['title' => $category->title]) @push('meta') @endpush @section('content') {{ trans('front::messages.products.home') }} {{ trans('front::messages.products.products') }} @foreach ($category->parents() as $parent) {{ $parent->title }} @endforeach {{ $category->title }} @if ($category->description) {!! $category->description !!} @endif @if($category->getCategoriesCount()) {{ trans('front::messages.products.all-products') }} {{ trans('front::messages.products.view-all-products') }} @foreach($category->getCategories() as $cat) {{ $cat->title }} {{ trans('front::messages.products.view-products') }} @endforeach @else @include('front::partials.empty') @endif @endsection