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'); 

named routes laravel


Comments

Popular posts from this blog

PHP and MySQL WP -

android - InAppBilling registering BroadcastReceiver in AndroidManifest -

go - golang pprof for c library code -