hypothetical/app/Http/Controllers/Auth/LoginController.php

39 lines
940 B
PHP
Raw Normal View History

<?php namespace App\Http\Controllers\Auth;
2016-08-19 16:38:49 -04:00
use App\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\AuthenticatesUsers;
class LoginController extends Controller {
2016-08-19 16:38:49 -04:00
/*
|--------------------------------------------------------------------------
| 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.
2016-08-19 16:38:49 -04:00
*
* @var string
*/
protected $redirectTo = '/';
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('guest')->except('logout');
2016-08-19 16:38:49 -04:00
}
2016-08-19 16:38:49 -04:00
}