@php $destination = route('member-dashboard.index'); if (request()->is('industries/*')) { $destination = route('member-dashboard.index', ['category' => 'case-study', 'industry_id' => $industry->id]); } elseif (request()->is('resources/tool*')) { $destination = route('member-dashboard.index', ['category' => 'tool']); } elseif (request()->is('resources/white-paper*')) { $destination = route('member-dashboard.index', ['category' => 'white-paper']); } elseif (request()->is('resources/webinar*')) { $destination = route('member-dashboard.index', ['category' => 'webinar']); } elseif (request()->is('resources/events*')) { $destination = route('member-dashboard.gresb-water.list'); } @endphp