
Good content takes time and effort to come up with.
Please consider supporting us by just disabling your AD BLOCKER and reloading this page again.
Most of the time, you would be facing problems when you might want to redirect from called functions.
But this article I will show you a simple way to force URL redirect from other functions in Laravel.
Assume you are developing multi-tenancy application, and you have custom designed your login system and don't want login user to see login page, then you would do something like the following in AuthController
.
It just checks for the user session and redirects to the default landing page as per the user role.
Calling Function
- AuthController -> login()
Called Function
- Controller -> loginRedirect()
class AuthController extends Controller
{
public function login()
{
/** Login Redirect Is Handled From Controller class */
$this->loginRedirect();
return view('auth.login');
}
}
class Controller extends BaseController
{
use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
public function loginRedirectLink()
{
/** If admin redirect to dashboard URL else customers URL */
$role = session()->get('user_details')->role;
return ($role == 'admin') ? 'dashboard' : 'customers';
}
public function loginRedirect()
{
/** Check if user is already logged in if yes then redirect accordingly */
if (session()->has('user_details')) {
redirect($this->loginRedirectLink());
}
}
}
Basically, if you useredirect()->to('some_link')
orredirect('some_link')
, then redirect of URL will be returned to CALLING FUNCTION and won't redirects from CALLED FUNCTION.
redirect($this->loginRedirectLink());
With the help of redirect()->to('url')->send()
we will force redirect the url from CALLED FUNCTION
redirect()->to($this->loginRedirectLink())->send();
class Controller extends BaseController
{
/** ** Other Code ** */
public function loginRedirect()
{
if (session()->has('user_details')) {
redirect()->to($this->loginRedirectLink())->send();
}
}
}
I hope this article helped you. Please share it with your friends.
Laravel Clear Cache Of Route, View, Config Command
Relationship Table Data With Route Model Binding In Laravel
Free Live Chat Integration Using TAWK.IO
Detect AdBlocker With Javascript And Increase Website Ads Revenue
Multiple File Uploads In Laravel PHP
Install Letsencrypt SSL Certificate for RabbitMQ Server and RabbitMQ Management Tool
Simple Way To Create Resourceful API Controller In Laravel
@stack @push and @prepend In Laravel Blade
Accessors And Mutators In PHP Laravel