I Am looking for where to add the facade below in Lumen.
\'JWTAuth\' => \'Tymon\\JWTAuth\\Facades\\JWTAuth\'
EDITED
Also where to re
In your bootstrap\app.php
Example for Provider
// XML parser service provider
$app->register(\Nathanmac\Utilities\Parser\ParserServiceProvider::class);
// GeoIP
$app->register(\Torann\GeoIP\GeoIPServiceProvider::class);
$app->withEloquent();
Example for Alias
// SERVICE ALIASES
class_alias(\Nathanmac\Utilities\Parser\Facades\Parser::class, 'Parser');
class_alias(\Torann\GeoIP\Facades\GeoIP::class, 'GeoIP');
$app->withFacades();
...
...
...
Good luck