16 lines
554 B
PHP
16 lines
554 B
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Temporary verification code display
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Enable this only while the verification delivery channels are not ready.
|
|
| Once email/WhatsApp delivery is active, set the environment value to false
|
|
| so the verification code is no longer exposed by the API.
|
|
|
|
|
*/
|
|
'show_verification_code' => env('REGISTRATION_SHOW_VERIFICATION_CODE', false),
|
|
];
|