mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-12-09 04:45:31 -05:00
13 lines
199 B
PHP
13 lines
199 B
PHP
<?php
|
|
|
|
return [
|
|
'driver' => 'eloquent',
|
|
'model' => 'App\Models\User',
|
|
'table' => 'users',
|
|
'password' => [
|
|
'email' => 'emails.password',
|
|
'table' => 'password_resets',
|
|
'expire' => 60,
|
|
]
|
|
];
|