/home/techb158/ileadtechnology.com/app/Providers
Edit: /home/techb158/ileadtechnology.com/app/Providers/AuthServiceProvider.php (1019B)
'App\Policies\ModelPolicy',
];
/**
* Register any authentication / authorization services.
*
* @return void
*/
public function boot()
{
$this->registerPolicies();
Passport::routes();
Passport::tokensExpireIn(now()->addDays(10));
Passport::refreshTokensExpireIn(now()->addDays(30));
$this->commands([
InstallCommand::class,
ClientCommand::class,
KeysCommand::class,
]);
//
}
}