@php $navigation = [ ['name' => 'Dashboard', 'route' => 'dashboard', 'icon' => 'home'], ['name' => 'Articles', 'route' => 'articles', 'icon' => 'document-text'], ['name' => 'Feeds', 'route' => 'feeds', 'icon' => 'rss'], ['name' => 'Channels', 'route' => 'channels', 'icon' => 'hashtag'], ['name' => 'Routes', 'route' => 'routes', 'icon' => 'arrow-path'], ['name' => 'Settings', 'route' => 'settings', 'icon' => 'cog-6-tooth'], ]; @endphp @foreach ($navigation as $item) @switch($item['icon']) @case('home') @break @case('document-text') @break @case('rss') @break @case('hashtag') @break @case('arrow-path') @break @case('cog-6-tooth') @break @endswitch {{ $item['name'] }} @endforeach