@props([ 'active' => '', ]) @php /** * Sidebar navigation. * * In S0.1 the sections are static and expose only the routes that already * exist (landing, shell preview, style guide, health). Business modules * are appended per sub-sprint through their own service providers. */ $sections = [ [ 'label' => __('Overview'), 'items' => [ ['name' => 'shell.preview', 'label' => __('Dashboard'), 'icon' => 'home', 'href' => route('shell.preview')], ['name' => 'styleguide', 'label' => __('Style guide'),'icon' => 'book', 'href' => route('styleguide')], ], ], [ 'label' => __('System'), 'items' => [ ['name' => 'landing', 'label' => __('Landing page'),'icon' => 'file', 'href' => route('landing')], ['name' => 'health', 'label' => __('Health check'),'icon' => 'shield', 'href' => url('/healthz'), 'external' => false], ['name' => 'api.ready', 'label' => __('Ready probe'), 'icon' => 'chart', 'href' => url('/api/v1/ready'), 'external' => true], ], ], ]; @endphp