AuthController.php 643 B

123456789101112131415161718192021
  1. <?php namespace App\Http\Controllers\Auth;
  2. use App\Http\Controllers\Controller;
  3. use Illuminate\Foundation\Auth\AuthenticatesAndRegistersUsers;
  4. class AuthController extends Controller {
  5. /*
  6. |--------------------------------------------------------------------------
  7. | Registration & Login Controller
  8. |--------------------------------------------------------------------------
  9. |
  10. | This controller handles the registration of new users, as well as the
  11. | authentication of existing users. By default, this controller uses
  12. | a simple trait to add these behaviors. Why don't you explore it?
  13. |
  14. */
  15. use AuthenticatesAndRegistersUsers;
  16. }