In the construct
method of the default VerificationController.php
of Laravel, I see:
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('auth');
$this->middleware('signed')->only('verify');
$this->middleware('throttle:6,1')->only('verify', 'resend');
}
What do these three middlewares do ?
question from:https://stackoverflow.com/questions/65598777/what-does-laravel-emailverification-controllers-contruct-method-do