35

ルーメンの下にファサードを追加する場所を探しています。

'JWTAuth' => 'Tymon\JWTAuth\Facades\JWTAuth'

編集済み

また、サービスプロバイダーを登録する場所bootstrap\app.php

$app->register('Tymon\JWTAuth\Providers\JWTAuthServiceProvider');

手伝ってください。

4

3 に答える 3

3

あなたの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();
...
...
...

幸運を

于 2018-06-17T11:56:36.527 に答える