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