Create User Zone

This commit is contained in:
omair saleh
2022-09-25 03:46:14 +08:00
parent 8143e2b9a2
commit b008ad5106
59 changed files with 1757 additions and 12 deletions
+7 -2
View File
@@ -14,7 +14,7 @@ return [
*/
'defaults' => [
'guard' => 'web',
'guard' => 'internal-api',
'passwords' => 'users',
],
@@ -40,6 +40,11 @@ return [
'driver' => 'session',
'provider' => 'users',
],
'internal-api' => [
'driver' => 'jwt',
'provider' => 'users',
'hash' => false,
]
],
/*
@@ -62,7 +67,7 @@ return [
'providers' => [
'users' => [
'driver' => 'eloquent',
'model' => App\Models\User::class,
'model' => \Src\Zone\User\Infrastructure\EloquentModels\UserEloquentModel::class,
],
// 'users' => [