@extends('template.app')
@section('title', 'Kategori')
@section('css')
@endsection
@section('breadcrumb')
Daftar Kategori
@endsection
@section('content')
@include('components.toast-notification')
Daftar Kategori
Tambah
@foreach($categoriesTree as $category)
-
{{ $category->name }} (ID: {{ $category->id }})
@if($category->children->isNotEmpty())
@foreach($category->children as $childCategory)
-
-- {{ $childCategory->name }} (ID: {{ $childCategory->id }})
@endforeach
@endif
@endforeach
@endsection
@section('js')
@endsection