Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 6 |
| LoginController | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
20 | |
0.00% |
0 / 6 |
| __construct | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
|||
| super_admin_login | |
0.00% |
0 / 1 |
12 | |
0.00% |
0 / 4 |
|||
| <?php | |
| namespace App\Http\Controllers\Auth; | |
| use App\Http\Controllers\Controller; | |
| use App\Providers\RouteServiceProvider; | |
| use Illuminate\Foundation\Auth\AuthenticatesUsers; | |
| use Illuminate\Http\Request; | |
| use Illuminate\Support\Facades\Auth; | |
| use App\User; | |
| 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 = RouteServiceProvider::HOME; | |
| /** | |
| * Create a new controller instance. | |
| * | |
| * @return void | |
| */ | |
| public function __construct() | |
| { | |
| $this->middleware('guest')->except('logout'); | |
| } | |
| /** | |
| * Function for Central Admins login to the cms | |
| * | |
| * @param admin_token | |
| * @return redirect to dashboard on success, or login on fial | |
| */ | |
| public function super_admin_login($admin_token, Request $request) | |
| { | |
| // dd($admin_token); | |
| $user= User::where('admin_token', $admin_token)->first(); | |
| if ($user && Auth::login($user, true)) { | |
| // Authentication passed... | |
| return redirect('home'); | |
| } | |
| return redirect('login'); | |
| } | |
| } |