PHPackages                             czim/laravel-cms-acl-module - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. czim/laravel-cms-acl-module

AbandonedArchivedLibrary[Authentication &amp; Authorization](/categories/authentication)

czim/laravel-cms-acl-module
===========================

Laravel CMS: ACL Module

0.9.3(9y ago)22.0kPHPPHP &gt;=5.5.9

Since Dec 18Pushed 7y ago2 watchersCompare

[ Source](https://github.com/czim/laravel-cms-acl-module)[ Packagist](https://packagist.org/packages/czim/laravel-cms-acl-module)[ Docs](https://github.com/czim)[ RSS](/packages/czim-laravel-cms-acl-module/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (5)Versions (6)Used By (0)

CMS for Laravel - ACL module
============================

[](#cms-for-laravel---acl-module)

Simple ACL module for the CMS.

To be used to with the [Laravel CMS Core](https://github.com/czim/laravel-cms-core).

Installation
------------

[](#installation)

Add the module class to your `cms-modules.php` configuration file:

```
    'modules' => [
        // ...
        \Czim\CmsAclModule\AclModule::class,
    ],
```

Add the service provider to your `cms-modules.php` configuration file:

```
    'providers' => [
        // ...
        Czim\CmsAclModule\Providers\CmsAclModuleServiceProvider::class,
        // ...
    ],
```

To publish the config:

```
php artisan vendor:publish
```

Configuration
-------------

[](#configuration)

Available permissions are read from the [core](https://github.com/czim/laravel-cms-core)'s module defined ACL presences.

Any custom permission keys may be added to the `cms-acl-module.php` configuration file, under `permissions`:

```
