@php
$mobileNavLinks = [
'about' => ['label' => 'About', 'icon' => 'fas fa-info-circle'],
'services.index' => ['label' => 'Services', 'icon' => 'fas fa-concierge-bell'],
'projects' => ['label' => 'Projects', 'icon' => 'fas fa-briefcase'],
'blog.index' => ['label' => 'Blog', 'icon' => 'fas fa-newspaper'],
];
@endphp
@foreach ($mobileNavLinks as $route => $link)
@if ($route === 'services.index')
@else
{{ $link['label'] }}
@endif
@endforeach