It's possible to force the password reset entries to be saved on the tenant connection. In order to do so update the auth.php file and add the connection key like this:
'passwords' => [
'users' => [
'provider' => 'users',
'table' => 'password_resets',
'expire' => 60,
'connection' => 'tenant',
],
],
Moved from tenancy/multi-tenant#443
It's possible to force the password reset entries to be saved on the tenant connection. In order to do so update the
auth.phpfile and add theconnectionkey like this: