@php $navLinks = [ ['label' => 'Features', 'route' => 'features'], ['label' => 'How It Works', 'route' => 'how-it-works'], ['label' => 'Pricing', 'route' => 'pricing'], ['label' => 'Blog', 'route' => 'blog.index'], ['label' => 'About', 'route' => 'about'], ['label' => 'Contact', 'route' => 'contact'], ]; @endphp
{{-- Mobile menu --}}
@foreach ($navLinks as $link) @php $href = \Illuminate\Support\Facades\Route::has($link['route']) ? route($link['route']) : '#'; @endphp {{ $link['label'] }} @endforeach
@auth Dashboard @else Log in Get started @endauth