• @lang('layout.home-page')
  • @foreach($pages as $page)
  • {{ $page->title }}
  • @endforeach @foreach($categories as $category) @if($category->children->isNotEmpty() || $category->posts->isNotEmpty())
  • {{ $category->title }}
      @foreach($category->children as $child)
    • {{ $child->title }}
    • @endforeach @foreach($category->posts as $post)
    • {{ $post->title }}
    • @endforeach
  • @else
  • {{ $category->title }}
  • @endif @endforeach
  • @lang('layout.contact-menu')