diff --git a/config/auth.php b/config/auth.php index f8f5790..87d5829 100644 --- a/config/auth.php +++ b/config/auth.php @@ -44,6 +44,10 @@ return [ 'driver' => 'session', 'provider' => 'admins', ], + 'mobile' => [ + 'driver' => 'session', + 'provider' => 'mobile', + ], ], /* @@ -78,6 +82,10 @@ return [ 'driver' => 'eloquent', 'model' => \App\Models\Admin::class ], + 'mobile' => [ + 'driver' => 'eloquent', + 'model' => \App\Models\User::class + ], ], /*