Files
ponzi/app/Http/Controllers/Auth/AuthController.php
Taylor Otwell 50bdd8e33a Some wording.
2014-11-29 16:57:46 -06:00

29 lines
759 B
PHP

<?php namespace App\Http\Controllers\Auth;
use App\Http\Controllers\Controller;
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;
/**
* Where to redirect after registration or login.
*
* @var string
*/
protected $redirectTo = '/home';
}