You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i have two models related to users one for admin users User and other for customers Customer, I need to apply this package with Customer model, and i seed on your package use the auth.providers.users.model, but as you see i have to provider
i have two models related to users one for admin users
User
and other for customersCustomer
, I need to apply this package withCustomer
model, and i seed on your package use theauth.providers.users.model
, but as you see i have to provider'providers' => [ 'users' => [ 'driver' => 'eloquent', 'model' => App\Models\User::class, ], 'customers' => [ 'driver' => 'eloquent', 'model' => App\Models\Customer::class, ] ],
The text was updated successfully, but these errors were encountered: