php - Redirect to a named route in Laravel 5.4 -
if have code:
route::get('about/info', function(){ return "here about/info page!"; }); route::get('about', function(){ return "here page!"; }) ; i tried function, did not work!
route::any('direct', function(){ return redirect()->route('info'); }); can me on how redirect named route in laravel 5.4?
you need name route should this.
route::get('about/info', function(){ return "here about/info page!"; })->name('info');
Comments
Post a Comment