@if(count($locations) > 1)
  • @lang('Store'){{session('location')}}
      @foreach($locations as $location)
    • {{$location->name}}
    • @endforeach
  • @endif @if(count($brands) > 0)
  • @lang('Brands')
      @foreach($brands as $brand)
    • {{$brand->name}}
    • @endforeach
  • @endif @if(count($root_categories) > 0) @foreach($root_categories as $category) @if($category->is_active)
  • {{$category->name}} @if($category->categories()->where('show_in_menu', true)->count()) @include('partials.front.sub-categories', ['childs' => $category->categories()->where('show_in_menu', true)->orderBy('priority', 'asc')->get()]) @endif
  • @endif @endforeach @endif @if(count($deals) > 0) @foreach($deals as $deal)
  • {{$deal->name}}
  • @endforeach @endif @if(count($pages) > 0) @foreach($pages as $page)
  • {{$page->title}}
  • @endforeach @endif