mirror of
https://github.com/Aviortheking/CA_LARAVEL.git
synced 2025-06-15 02:49:18 +00:00
fix migration && add seeder && add is_admin
This commit is contained in:
@ -1,40 +1,125 @@
|
||||
<?php
|
||||
|
||||
|
||||
|
||||
namespace App\Http\Controllers\Auth;
|
||||
|
||||
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use App\Providers\RouteServiceProvider;
|
||||
|
||||
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 = RouteServiceProvider::HOME;
|
||||
|
||||
|
||||
/**
|
||||
* Create a new controller instance.
|
||||
|
||||
* Where to redirect users after login.
|
||||
|
||||
*
|
||||
* @return void
|
||||
|
||||
* @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.');
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
36
app/Http/Controllers/HomeController.php
Normal file
36
app/Http/Controllers/HomeController.php
Normal file
@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class HomeController extends Controller
|
||||
{
|
||||
/**
|
||||
* Create a new controller instance.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('auth');
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the application dashboard.
|
||||
*
|
||||
* @return \Illuminate\Contracts\Support\Renderable
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
return view('home');
|
||||
}
|
||||
|
||||
public function adminHome()
|
||||
|
||||
{
|
||||
|
||||
return view('adminHome');
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user