Files
E-Vote/app/Providers/AuthServiceProvider.php
2024-02-08 09:30:14 +08:00

37 lines
789 B
PHP

<?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::tokensCan([
'vote' => 'The user can access voter\'s panel.',
'admin' => 'The user can access admin panel.',
]);
Passport::routes();
}
}