Seit der Version Laravel 5.7.28
, können Sie einfach in config/auth.php
einrichten .
'guards' => [
'api' => [
'driver' => 'token',
'input_key' => 'token', // The input name to pass through
'storage_key' => 'token', // The column name to store in database
'provider' => 'users',
],
],