Rute URL saat ini Laravel
\Route::current()
############### OR ####################
$request->getRequestUri()
Lokesh003Coding
\Route::current()
############### OR ####################
$request->getRequestUri()
@if(Request::url() === 'your url here')
// code
@endif
if (Request::is('admin/*'))
{
// code
}
\Route::getFacadeRoot()->current()->uri();