@extends('layouts.app') @section('title') @if( ! empty($title)) {{ $title }} | @endif @parent @endsection @section('content') @if($is_category_single && $category->sub_categories->count())
@foreach($category->sub_categories as $sub_c) @endforeach

@lang('app.more_categories')

@endif @if($top_categories->count())
@foreach($top_categories as $top_cat)
@if($top_cat->sub_categories->count())
@endif
@endforeach
@endif @endsection