@php $firstFeatureNavbar = [ [ 'title' => 'About', 'url' => route('page', 'about'), ], [ 'title' => 'Accommodation', 'url' => route('page', 'accommodation'), ], [ 'title' => 'Service & Facilities', 'url' => route('page', 'service-facilities'), ], [ 'title' => 'Restaurant', 'url' => route('page', 'restaurant'), ], [ 'title' => 'Special Offers', 'url' => route('page', 'special-offers'), ], [ 'title' => 'Galleries', 'url' => route('page', 'galleries'), ], ]; $secondFeatureNavbar = [ [ 'title' => 'Superior Room', 'url' => route('accommodation.detail', 'superior-room'), ], [ 'title' => 'Deluxe Room', 'url' => route('accommodation.detail', 'deluxe-room'), ], [ 'title' => 'Premier Room', 'url' => route('accommodation.detail', 'premier-room'), ], [ 'title' => 'Joglo House', 'url' => route('accommodation.detail', 'joglo-house'), ], ]; $thirdFeatureNavbar = [ [ 'title' => 'Yoga Sala SPA', 'url' => route('service-facilities.detail', 'yoga-sala-spa'), ], [ 'title' => 'Amora Bisma', 'url' => route('service-facilities.detail', 'amora-bisma'), ], [ 'title' => 'Candle Light Dinner', 'url' => route('service-facilities.detail', 'candle-light-dinner'), ], [ 'title' => 'Activities', 'url' => route('service-facilities.detail', 'activities'), ], ]; $fourthFeatureNavbar = [ [ 'title' => config('social.address.name'), 'target' => '_blank', 'url' => config('social.address.url'), ], [ 'title' => config('social.customer_service.whatsapp'), 'target' => '_blank', 'url' => config('social.customer_service.url_whatsapp'), ], [ 'title' => config('social.customer_service.email'), 'target' => '_blank', 'url' => config('social.customer_service.url_email'), ], ]; @endphp