commit 08-2025
This commit is contained in:
parent
9ae662f63e
commit
480fdc65ed
404 changed files with 65310 additions and 2600431 deletions
|
|
@ -45,6 +45,11 @@ return [
|
|||
'driver' => 'passport',
|
||||
'provider' => 'users',
|
||||
],
|
||||
|
||||
'customers' => [ // Neuer Guard für Kunden
|
||||
'driver' => 'session', // Session-basiert wie der Web-Guard
|
||||
'provider' => 'customers', // Neuer Provider
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|
|
@ -69,6 +74,10 @@ return [
|
|||
'driver' => 'eloquent',
|
||||
'model' => App\User::class,
|
||||
],
|
||||
'customers' => [
|
||||
'driver' => 'eloquent',
|
||||
'model' => App\Models\Customer::class,
|
||||
],
|
||||
/* 'api_users' => [
|
||||
'driver' => 'eloquent',
|
||||
'model' => App\ApiUser::class,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue