mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.2 KiB
PHTML
34 lines
1.2 KiB
PHTML
<nav>
|
|
<ul id="mega-menu">
|
|
@foreach(\App\Helpers\getMainCats(8) as $mcat)
|
|
<li>
|
|
<a href="{{route('product-category.show',$mcat->slug)}}">
|
|
{{$mcat->name}}
|
|
</a>
|
|
<ul>
|
|
@foreach(\App\Helpers\getSubCats($mcat->id,4) as $subcat)
|
|
<li>
|
|
<h3>
|
|
<a href="{{route('product-category.show',$subcat->slug)}}">
|
|
{{$subcat->name}}
|
|
</a>
|
|
</h3>
|
|
<ul>
|
|
@foreach(\App\Helpers\getSubCats($subcat->id) as $sc)
|
|
<li>
|
|
<a href="{{route('product-category.show',$sc->slug)}}">
|
|
{{$sc->name}}
|
|
</a>
|
|
</li>
|
|
@endforeach
|
|
</ul>
|
|
</li>
|
|
@endforeach
|
|
</ul>
|
|
</li>
|
|
@endforeach
|
|
{!! \App\Helpers\MenuShowByName('menu') !!}
|
|
</ul>
|
|
</nav>
|
|
<div id="search-list"></div>
|