AuthController.php 764 B

12345678910111213141516171819202122232425262728
  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. /**
  17. * The path to send users after registration or login.
  18. *
  19. * @var string
  20. */
  21. protected $redirectTo = '/home';
  22. }