@php $navigation = [ [ 'label' => 'Dashboard', 'href' => route('my.dashboard.show'), 'is_active' => request()->is(ltrim(route('my.dashboard.show', [],false), '/')) ], [ 'label' => 'My Details', 'href' => route('my.details.show'), 'is_active' => request()->is(ltrim(route('my.details.show', [],false) . '*', '/')) ], [ 'label' => 'Subscriptions', 'href' => route('my.subscriptions.show'), 'is_active' => request()->is(ltrim(route('my.subscriptions.show', [], false), '/')) ], [ 'label' => 'Favourites', 'href' => route('my.favourites.show'), 'is_active' => request()->is(ltrim(route('my.favourites.show', [], false), '/')) ], [ 'label' => 'Log out', 'href' => route('logout'), 'is_active' => false ] ]; @endphp