42 lines
866 B
PHP
42 lines
866 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Models\Language;
|
|
use App\Models\User;
|
|
use App\Policies\LanguagePolicy;
|
|
use App\Policies\UserPolicy;
|
|
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
|
|
use Spatie\Permission\Models\Role;
|
|
use App\Policies\RolePolicy;
|
|
|
|
class AuthServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* The model to policy mappings for the application.
|
|
*
|
|
* @var array<class-string, class-string>
|
|
*/
|
|
protected $policies = [
|
|
User::class => UserPolicy::class,
|
|
Role::class => RolePolicy::class,
|
|
Language::class => LanguagePolicy::class,
|
|
];
|
|
|
|
/**
|
|
* Register services.
|
|
*/
|
|
public function register(): void
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Bootstrap services.
|
|
*/
|
|
public function boot(): void
|
|
{
|
|
$this->registerPolicies();
|
|
}
|
|
}
|