BUB-17 Aggiunto gruppi e ACL per laravel

This commit is contained in:
2023-04-07 08:31:27 +02:00
parent 2ab8a63cbc
commit 723ee9fb07
18 changed files with 763 additions and 54 deletions

18
resources/lang/vendor/acl/en/acl.php vendored Normal file
View File

@@ -0,0 +1,18 @@
<?php
return [
'forGroups' => 'This user does not have the necessary groups to access this route.',
'forPermissions' => 'This user does not have the necessary permissions to access this route',
'notLoggedIn' => 'You are not logged in.',
'forGroupsOrPermissions' => 'You do not have any of the permissions required to access this route',
'permission_already_exists' => 'One permission with this slug already exists!',
'group_already_exists' => 'One group with this slug or name already exists!',
'permission_does_not_exist' => 'There is no permission with this id:',
'permission_does_not_exist_with_slug' => 'There is no permission with this slug:',
'group_does_not_exist' => 'There is no group with this Id:',
'group_does_not_exist_with_slug' => 'There is no group with this slug:',
'user_does_not_exist_with_name' => 'There is no user with this name:',
'user_does_not_exist' => 'There is no user with this id:',
'null_model' => 'You are passing a null model as parameter',
'ignition_not_installed' => 'Ignition is not installed, please install to use solutions. composer require --dev facade/ignition',
];