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

54 lines
1.2 KiB
PHP
Raw Normal View History

2017-11-03 05:26:07 +00:00
<?php
namespace App\Http\Controllers\Auth;
2019-06-02 05:35:48 +00:00
use App\Http\Controllers\Controller;
use App\Providers\RouteServiceProvider;
2020-01-11 02:36:11 +00:00
use Illuminate\Foundation\Auth\AuthenticatesUsers;
2019-06-02 05:35:48 +00:00
2017-11-03 05:26:07 +00:00
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;
2017-11-03 05:26:07 +00:00
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('guest')->except('logout');
}
2018-05-20 12:53:14 +00:00
2020-01-11 02:36:11 +00:00
/**
* Show our themed login page
*/
public function showLoginForm()
{
$login_note = '';
if (file_exists('login_note.txt'))
$login_note = file_get_contents('login_note.txt');
return view('adminlte::auth.login')->with('login_note',$login_note);
}
}