Files
wasl/Backend/config/permission.php
2026-06-20 21:55:06 +03:00

72 lines
1.7 KiB
PHP

<?php
use App\Enums\Role;
return [
'models' => [
/*
* When using the "HasPermissions" trait from this package, we need to
* know which entity should be used to retrieve your permissions.
*/
'permission' => Spatie\Permission\Models\Permission::class,
/*
* When using the "HasRoles" trait from this package, we need to
* know which entity should be used to retrieve your roles.
*/
'role' => Spatie\Permission\Models\Role::class,
],
'table_names' => [
'roles' => 'roles',
'permissions' => 'permissions',
'model_has_permissions' => 'model_has_permissions',
'model_has_roles' => 'model_has_roles',
'role_has_permissions' => 'role_has_permissions',
],
'column_names' => [
'role_pivot_key' => null,
'permission_pivot_key' => null,
'model_morph_key' => 'model_id',
'team_foreign_key' => 'team_id',
],
/*
* When set to true, the method for checking permissions will be registered
* on the gate. Set to false to disable.
*/
'register_permission_check_method' => true,
/*
* When set to true, required permissions will be checked on the model
* to determine access.
*/
'teams' => false,
'use_passport_client_credentials' => false,
'display_permission_in_exception' => (bool) env('APP_DEBUG', false),
'display_role_in_exception' => (bool) env('APP_DEBUG', false),
'enable_wildcard_permission' => false,
'cache' => [
'expiration_time' => \DateInterval::createFromDateString('24 hours'),
'key' => 'spatie.permission.cache',
'store' => 'default',
],
];