0👍
The issue to this was that services.passport
in my services
config file did not exist. I put this in my services.php
config file.
'passport' => [
'login_endpoint' => env('TOKEN_LOGIN_ENDPOINT'),
'client_id' => env('TOKEN_CLIENT_ID'),
'client_secret' => env('TOKEN_CLIENT_SECRET'),
],
Source:stackexchange.com