Files
nl-mall-api/app/Http/Controllers/Auth/AuthController.php

22 lines
643 B
PHP
Raw Normal View History

2014-11-24 13:59:40 -06:00
<?php namespace App\Http\Controllers\Auth;
2014-11-24 13:59:40 -06:00
use App\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\AuthenticatesAndRegistersUsers;
2014-10-15 08:34:33 -05:00
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;
}