Files
Heimdall/config/auth.php
2025-07-17 14:19:02 +01:00

20 lines
349 B
PHP

<?php
return [
'guards' => [
'api' => [
'driver' => 'token',
'provider' => 'users',
'hash' => false,
],
],
'providers' => [
'users' => [
'driver' => 'eloquent',
'model' => App\User::class, // Update this to the correct namespace
],
],
];