@extends('themes.basic.layouts.single') @section('title', $subSubCategory->trans->title ?? $subSubCategory->trans->title) @section('header_title', $subSubCategory->trans->title ?? $subSubCategory->trans->title) @section('description', $subSubCategory->trans->description) @section('keywords', $subSubCategory->trans->keywords) @section('breadcrumbs', Breadcrumbs::render('categories.sub-sub-category', $subSubCategory)) @section('breadcrumbs_schema', Breadcrumbs::view('breadcrumbs::json-ld', 'categories.sub-sub-category', $subSubCategory)) @section('container', 'container-custom') @section('header_v1', true) @section('content')
@include('themes.basic.partials.search-params', [ 'search_params_classes' => 'col-lg-4 col-xxl-3', 'search_categories_title' => d_trans('Related Categories'), 'search_categories' => $searchCategories, ])
@include('themes.basic.partials.grid-header', [ 'grid_title' => collect(request()->query())->except('page')->count() > 0 ? d_trans('Your search results for the ":name" category', [ 'name' => strtolower($subSubCategory->trans->name), ]) : d_trans('All results for the ":name" category', [ 'name' => strtolower($subSubCategory->trans->name), ]), 'hide_grid_buttons' => $businesses->count() < 1, ]) @if ($businesses->count() > 0)
@foreach ($businesses as $business)
@include('themes.basic.partials.business', [ 'business' => $business, 'item_footer' => true, ])
@endforeach
{{ $businesses->links() }} @else @include('themes.basic.partials.empty-box', ['empty_image' => 'v2']) @endif
@include('themes.basic.categories.includes.popular-searches', ['popularSearches' => $popularSearches]) @endsection