@lang('lang_v1.all_category')
@foreach($categories as $category)
{{ \Illuminate\Support\Str::limit(ucfirst($category['name']), 23) }}
@if(!empty($category['sub_categories']))
@endif
@if(!empty($category['sub_categories']))
@foreach($category['sub_categories'] as $sc)
{{ \Illuminate\Support\Str::limit($sc['name'], 23) }}
@if(!empty($sc['sub_sub_categories']))
@endif
@if(!empty($sc['sub_sub_categories']))
@foreach($sc['sub_sub_categories'] as $ssc)
{{ \Illuminate\Support\Str::limit($ssc['name'], 20) }}
@endforeach
@endif
@endforeach
@endif
@endforeach