@php $links = ['home' => 'Inicio', 'about' => 'Acerca', 'products' => 'Productos'] $current = $_GET['r'] ?? 'home'; @endphp @foreach($links as $key => $label) {{ $label }} @endforeach