Skip to content

Instantly share code, notes, and snippets.

@Mozartted
Created August 31, 2017 12:22
Show Gist options
  • Save Mozartted/9aa618b2dfd65ca19050d9b310a55766 to your computer and use it in GitHub Desktop.
Save Mozartted/9aa618b2dfd65ca19050d9b310a55766 to your computer and use it in GitHub Desktop.
<?php
namespace App\Providers;
use Illuminate\Support\Facades\Gate;
use Laravel\Passport\Passport;
use Carbon\Carbon;
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
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(Carbon::now()->addDays(15));
Passport::refreshTokensExpireIn(Carbon::now()->addDays(30));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment