18 lines
441 B
PHP
18 lines
441 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Hide Authentication Buttons
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| When set to true, this will hide authentication buttons (login/register)
|
|
| from the landing page and return 404 for auth routes.
|
|
|
|
|
*/
|
|
|
|
'hide_auth_buttons' => env('HIDE_AUTH_BUTTONS', false),
|
|
|
|
];
|