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