laravel check route name code example
Example 1: laravel get current route name
Route::currentRouteName()
Example 2: laravel is route name
// Check if route is ***
Request::route()->named("YourRouteNameView")
Example 3: laravel get current route name
Route::getCurrentRoute()->getActionName();
Example 4: set route name laravel
Route::get('/novanoticia', 'HomeController@getNovaNoticia')->name('route_name');