@foreach([
['Main Pages', [['/' => 'Home'], ['/shop' => 'Shop'], ['/specials' => 'Special Offers'], ['/brands' => 'Our Brands'], ['/about' => 'About Us'], ['/contact' => 'Contact Us'], ['/blog' => 'Blog']]],
['Categories', [['/shop?category=Engine+Parts' => 'Engine Parts'], ['/shop?category=Body+Parts' => 'Body Parts'], ['/shop?category=Lighting' => 'Lighting'], ['/shop?category=Wheels+%26+Tires' => 'Wheels & Tires'], ['/shop?category=Brakes+%26+Rotors' => 'Brakes & Rotors'], ['/shop?category=Maintenance' => 'Maintenance']]],
['Account', [['/auth' => 'Login / Register'], ['/dashboard' => 'My Dashboard'], ['/cart' => 'Shopping Cart'], ['/checkout' => 'Checkout']]]
] as $section)
{{ $section[0] }}
@foreach($section[1] as $link)
@php $url = array_key_first($link); @endphp
-
{{ $link[$url] }}
@endforeach
@endforeach