@extends('frontend.layouts.master') @section('title','Categories') @section('css') @endsection @section('content')
@foreach ($categories as $key => $category)
@foreach (\App\Utility\CategoryUtility::children_ids($category->id) as $key => $first_level_id) @php $item = \App\Models\Category::find($first_level_id); @endphp @endforeach
@endforeach
@endsection