@props([
'items' => [],
])
{{--
Table of Contents Component
Usage:
Or manually:
Introduction
Getting Started
--}}
@if(count($items) > 0)
@foreach($items as $item)
-
{{ $item['label'] }}
@if(isset($item['children']) && count($item['children']) > 0)
@endif
@endforeach
@else
{{ $slot }}
@endif