Skip to content

Instantly share code, notes, and snippets.

@mshanak
Created June 24, 2017 13:55
Show Gist options
  • Save mshanak/8f3a4297738698f3bbcec9077afdd92d to your computer and use it in GitHub Desktop.
Save mshanak/8f3a4297738698f3bbcec9077afdd92d to your computer and use it in GitHub Desktop.
laravel Passport CORS : AuthServiceProvider.php
<?php
namespace App\Providers;
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
use Illuminate\Support\Facades\Gate;
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();
Route::group([ 'middleware' => 'cors'], function() {
Passport::routes();
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment