Page MenuHomeDevCentral

AuthController.php
No OneTemporary

AuthController.php

<?php namespace AuthGrove\Http\Controllers\Auth;
use AuthGrove\Http\Controllers\Controller;
use Illuminate\Contracts\Auth\Guard;
use Illuminate\Contracts\Auth\Registrar;
use Illuminate\Foundation\Auth\AuthenticatesAndRegistersUsers;
class AuthController extends Controller {
/*
|--------------------------------------------------------------------------
| Registration & Login Controller
|--------------------------------------------------------------------------
|
| This controller handles the registration of new users, as well as the
| authentication of existing users. By default, this controller uses
| a simple trait to add these behaviors. Why don't you explore it?
|
*/
use AuthenticatesAndRegistersUsers;
/**
* Create a new authentication controller instance.
*
* @param \Illuminate\Contracts\Auth\Guard $auth
* @param \Illuminate\Contracts\Auth\Registrar $registrar
* @return void
*/
public function __construct(Guard $auth, Registrar $registrar)
{
$this->auth = $auth;
$this->registrar = $registrar;
$this->middleware('guest', ['except' => 'getLogout']);
}
}

File Metadata

Mime Type
text/x-php
Expires
Mon, Jun 8, 07:51 (23 h, 11 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3753820
Default Alt Text
AuthController.php (1 KB)

Event Timeline