laravel 4 - How I can open admin page in other tab with redirect:to? -


how can open admin page in other tab (target blank) when user login?

in controller after validate return this:

return redirect::to('/adminpanel'); 

you can't redirect user backend new tab. use javascript solution or ajax request .done (jquery like) callback redirect user after request finished.


Comments

Popular posts from this blog

java - Static nested class instance -

Python Pandas join aggregated tables -

process - Python What is the difference between a Pool of worker processes and just running multiple Processes? -