ルーメンの下にファサードを追加する場所を探しています。
'JWTAuth' => 'Tymon\JWTAuth\Facades\JWTAuth'
編集済み
また、サービスプロバイダーを登録する場所bootstrap\app.php
$app->register('Tymon\JWTAuth\Providers\JWTAuthServiceProvider');
手伝ってください。
あなたのbootstrap\app.phpで
プロバイダの例
// XML parser service provider
$app->register(\Nathanmac\Utilities\Parser\ParserServiceProvider::class);
// GeoIP
$app->register(\Torann\GeoIP\GeoIPServiceProvider::class);
$app->withEloquent();
エイリアスの例
// SERVICE ALIASES
class_alias(\Nathanmac\Utilities\Parser\Facades\Parser::class, 'Parser');
class_alias(\Torann\GeoIP\Facades\GeoIP::class, 'GeoIP');
$app->withFacades();
...
...
...
幸運を