Files
tbbank-new/app/Modules/BaseAuth/Configs/base-auth-config.php
2025-10-22 20:08:22 +05:00

23 lines
598 B
PHP

<?php
return [
// Redirect path after login, register, reset password, etc.
'redirect_path' => filament_path(),
// Default username, send from request and for validation, also db column
'default_username' => 'username',
// If multiple usernames are supported for login, will be searched by user columns
'multiple_usernames' => true,
'usernames' => [
'username',
'phone',
],
// If auth events should be stored
'store_auth_events' => true,
// If sms verification is enabled, will be sent to the user
'sms_verification' => true,
];