mirror of
https://github.com/Aviortheking/CA_LARAVEL.git
synced 2025-04-23 03:12:12 +00:00
125 lines
1.7 KiB
PHP
Executable File
125 lines
1.7 KiB
PHP
Executable File
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Auth;
|
|
|
|
|
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
use Illuminate\Foundation\Auth\AuthenticatesUsers;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
|
|
|
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 = '/home';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new controller instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
$this->middleware('guest')->except('logout');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function login(Request $request)
|
|
|
|
{
|
|
|
|
$input = $request->all();
|
|
|
|
|
|
|
|
$this->validate($request, [
|
|
|
|
'email' => 'required|email',
|
|
|
|
'password' => 'required',
|
|
|
|
]);
|
|
|
|
|
|
|
|
if(auth()->attempt(array('email' => $input['email'], 'password' => $input['password'])))
|
|
|
|
{
|
|
|
|
if (auth()->user()->is_admin == 1) {
|
|
|
|
return redirect()->route('admin.home');
|
|
|
|
}else{
|
|
|
|
return redirect()->route('home');
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
return redirect()->route('login')
|
|
|
|
->with('error','Email-Address And Password Are Wrong.');
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
} |