Skip to content

Instantly share code, notes, and snippets.

@Maras0830
Created December 23, 2016 04:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Maras0830/f1cc66f7fd8d3c279b8c024ed528c5f3 to your computer and use it in GitHub Desktop.
Save Maras0830/f1cc66f7fd8d3c279b8c024ed528c5f3 to your computer and use it in GitHub Desktop.
Laravel53-passport-AuthServiceProvider
<?php
namespace App\Providers;
use Illuminate\Support\Facades\Gate;
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
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, 記得 use Laravel\Passport\Passport
Passport::routes();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment