Created
January 26, 2019 16:07
-
-
Save Kaperskyguru/71ec5057797b687f27aa702d597d332a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Controllers\Auth; | |
use App\Http\Controllers\Controller; | |
use Illuminate\Foundation\Auth\AuthenticatesUsers; | |
use Auth; | |
class LoginController extends Controller | |
{ | |
/* | |
|-------------------------------------------------------------------------- | |
| Login Controller | |
|-------------------------------------------------------------------------- | |
| | |
| This controller handles authenticating users for the application and | |
| redirecting them to your home screen. The controller uses a trait | |
| to conveniently provide its functionality to your applications. | |
| | |
*/ | |
use AuthenticatesUsers; | |
/** | |
* Where to redirect users after login. | |
* | |
* @var string | |
*/ | |
protected $redirectTo; | |
public function redirectTo() | |
{ | |
switch(Auth::user()->role){ | |
case 2: | |
$this->redirectTo = '/admin'; | |
return $this->redirectTo; | |
break; | |
case 4: | |
$this->redirectTo = '/team'; | |
return $this->redirectTo; | |
break; | |
case 3: | |
$this->redirectTo = '/player'; | |
return $this->redirectTo; | |
break; | |
case 5: | |
$this->redirectTo = '/academy'; | |
return $this->redirectTo; | |
break; | |
case 6: | |
$this->redirectTo = '/scout'; | |
return $this->redirectTo; | |
break; | |
case 1: | |
$this->redirectTo = '/superadmin'; | |
return $this->redirectTo; | |
break; | |
default: | |
$this->redirectTo = '/login'; | |
return $this->redirectTo; | |
} | |
// return $next($request); | |
} | |
/** | |
* Create a new controller instance. | |
* | |
* @return void | |
*/ | |
public function __construct() | |
{ | |
// $this->middleware('guest')->except('logout'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment