<?php namespace App\Providers; use Illuminate\Support\Facades\Gate; use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider; use Illuminate\Support\Facades\Route; use Laravel\Passport\Passport; class AuthServiceProvider extends ServiceProvider { /** * The policy mappings for the application. * * @var array */ protected $policies = [ // 'App\Model' => 'App\Policies\ModelPolicy', ]; /** * Register any authentication / authorization services. * * @return void */ public function boot() { $this->registerPolicies(); Passport::routes(); Passport::tokensExpireIn(now()->addDays(15)); Passport::refreshTokensExpireIn(now()->addDays(30)); Passport::personalAccessTokensExpireIn(now()->addMonths(6)); // Passport::routes(); // Route::group(['middleware' => 'store_provider'], function () { // Passport::routes(); // Passport::tokensExpireIn(now()->addMinutes(30)); // Passport::refreshTokensExpireIn(now()->addMinutes(60)); // Passport::personalAccessTokensExpireIn(now()->addMonths(6)); // }); } }