Mysql
 sql >> Base de données >  >> RDS >> Mysql

comment changer la colonne api_token dans token guard

Depuis la version Laravel 5.7.28 , Vous pouvez simplement configurer dans config/auth.php .

'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',
    ],
],