@extends('layouts.app') @section('content')
@if($all_categorys->isNotEmpty()) @foreach($all_categorys as $category) @if($category->children->isNotEmpty())
{{ $category->title }}
    @foreach($category->children()->where('status',1)->get() as $child)
  • {{ $child->title }}
  • @endforeach
@endif @endforeach @endif
@endsection