
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.
Free Live Chat Integration Using TAWK.IO
Supervisor For Laravel Queue Scheduling
PHP Built-In Web Server & Testing Your Development Project In Mobile Without Any Software
PHP file_put_contents failed to open stream: Permission denied
Lazy Load Images In Chrome With This Simple Trick
Multiple GIT Key Pairs Or Account In The Same Computer
Multiple File Uploads In Laravel PHP
Generate SSH Key with ssh-keygen In Linux / Unix
Detect AdBlocker With Javascript And Increase Website Ads Revenue
Automate Repeating Tasks In Linux Server With Cronjobs
Move Uploaded Files From Local Computer Or Server To Amazon S3 Bucket In PHP