@php use Illuminate\Support\Facades\Route; $currentRouteName = Route::currentRouteName(); $activeRoutes = ['front-pages-pricing', 'front-pages-payment', 'front-pages-checkout', 'front-pages-help-center']; $activeClass = in_array($currentRouteName, $activeRoutes) ? 'active' : ''; @endphp