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 -

c# - Bluetooth LE CanUpdate Characteristic property -

JavaScript - Replace variable from string in all occurrences -