laravel route with parameters in controller code example
Example 1: laraval routing
Route::redirect('/here', '/there', 301);
Example 2: set route name laravel
Route::get('/novanoticia', 'HomeController@getNovaNoticia')->name('route_name');
Route::redirect('/here', '/there', 301);
Route::get('/novanoticia', 'HomeController@getNovaNoticia')->name('route_name');