PasswordController.php 724 B

12345678910111213141516171819202122232425262728
  1. <?php namespace App\Http\Controllers\Auth;
  2. use App\Http\Controllers\Controller;
  3. use Illuminate\Foundation\Auth\ResetsPasswords;
  4. class PasswordController extends Controller {
  5. /*
  6. |--------------------------------------------------------------------------
  7. | Password Reset Controller
  8. |--------------------------------------------------------------------------
  9. |
  10. | This controller is responsible for handling password reset requests
  11. | and uses a simple trait to include this behavior. You're free to
  12. | explore this trait and override any methods you wish to tweak.
  13. |
  14. */
  15. use ResetsPasswords;
  16. /**
  17. * The path to send users after passwords are reset.
  18. *
  19. * @var string
  20. */
  21. protected $redirectTo = '/home';
  22. }