@extends('frontend.layouts.app') @section('content')

{{ translate('All Categories') }}

@foreach ($categories as $key => $category)
{{ $category->getTranslation('name') }}
@foreach ($category->childrenCategories as $key => $child_category)
{{ $child_category->getTranslation('name') }}
@if ($child_category->childrenCategories->count() > 5) {{ translate('More') }} @endif
@endforeach
@endforeach
@endsection @section('script') @endsection