@php if(Route::currentRouteName() == 'frontend.video.index') { $route = route('frontend.video.show', $video->id); } if(Route::currentRouteName() == 'frontend.video.category.show') { $route = route('frontend.video.show', $video->id); } if(Route::currentRouteName() == 'frontend.product.video.index') { $route = route('frontend.product.video.show', [$product->slug, $video->id]); } @endphp