Файл: vendor/protonemedia/laravel-verify-new-email/config/config.php
Строк: 37
<?php
return [
/**
* Here you can specify the name of a custom route to handle the verification.
*/
'route' => null,
/**
* Here you can specify the path to redirect to after verification.
*/
'redirect_to' => '/home',
/**
* Whether to login the user after successfully verifying its email.
*/
'login_after_verification' => true,
/**
* Should the user be permanently "remembered" by the application.
*/
'login_remember' => false,
/**
* Model class that will be used to store and retrieve the tokens.
*/
'model' => ProtoneMediaLaravelVerifyNewEmailPendingUserEmail::class,
/**
* The Mailable that will be sent when the User wants to verify
* its initial email address (that got used with registering).
*/
'mailable_for_first_verification' => ProtoneMediaLaravelVerifyNewEmailMailVerifyFirstEmail::class,
/**
* The Mailable that will be sent when the User wants to verify
* a new email address, for example when the User wants to
* update its email address.
*/
'mailable_for_new_email' => ProtoneMediaLaravelVerifyNewEmailMailVerifyNewEmail::class,
];