PHPackages                             beartropy/permissions - 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. beartropy/permissions

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

beartropy/permissions
=====================

Visual UI for spatie/laravel-permission using the Beartropy ecosystem

0.2.4(1w ago)0519↑93.3%MITPHPPHP ^8.2

Since Jan 16Pushed 1w agoCompare

[ Source](https://github.com/beartropy/permissions)[ Packagist](https://packagist.org/packages/beartropy/permissions)[ RSS](/packages/beartropy-permissions/feed)WikiDiscussions main Synced today

READMEChangelog (5)Dependencies (24)Versions (9)Used By (0)

🛡️ Beartropy Permissions
========================

[](#️-beartropy-permissions)

**A beautiful UI for [spatie/laravel-permission](https://github.com/spatie/laravel-permission)**

Manage roles, permissions, and user assignments with ease

 [![Latest Stable Version](https://camo.githubusercontent.com/c4b6e29407b0d139b2c9cd999593faacb89404e7a2357e455af746cd35c841f2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6265617274726f70792f7065726d697373696f6e732e7376673f7374796c653d666c61742d73717561726526636f6c6f723d696e6469676f)](https://packagist.org/packages/beartropy/permissions) [![Total Downloads](https://camo.githubusercontent.com/e9e8181770d1ada6646e4a5937ce2290ad27cae00975f38928da462c7ce2f236/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6265617274726f70792f7065726d697373696f6e732e7376673f7374796c653d666c61742d73717561726526636f6c6f723d626c7565)](https://packagist.org/packages/beartropy/permissions) [![License](https://camo.githubusercontent.com/2368c01ee283a59240e485a4a4b3a7d960ff9e5da34f14e95824a2b032926e82/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6265617274726f70792f7065726d697373696f6e733f7374796c653d666c61742d73717561726526636f6c6f723d736c617465)](https://packagist.org/packages/beartropy/permissions)

This package provides an intuitive admin UI for [spatie/laravel-permission](https://github.com/spatie/laravel-permission), the industry-standard package for role and permission management in Laravel. Built with Livewire and designed with modern aesthetics in mind.

> **Note**: This is **not** a replacement for `spatie/laravel-permission`. It's a visual interface that makes it easier to manage the roles and permissions you create with Spatie's excellent package.

✨ Key Features
--------------

[](#-key-features)

- �️ **Role Management** - Create, edit, and delete roles with an intuitive interface
- 🔑 **Permission Management** - Manage permissions with automatic grouping support
- 👥 **User Assignments** - Assign roles and direct permissions to users
- 📊 **Data Tables** - Searchable, sortable tables with bulk actions
- 🌐 **Internationalization** - Full i18n support (Spanish and English included)
- 🎨 **Dark Mode** - Seamless dark/light mode support
- ⚙️ **Highly Configurable** - Customize routes, middleware, guards, and more

� Documentation
---------------

[](#-documentation)

�👉 **[Read the full documentation at beartropy.com/permissions](https://beartropy.com/permissions)**

🚀 Quick Installation
--------------------

[](#-quick-installation)

```
composer require beartropy/permissions
```

### Setup Spatie Permission (if not installed)

[](#setup-spatie-permission-if-not-installed)

```
composer require spatie/laravel-permission
php artisan vendor:publish --provider="Spatie\Permission\PermissionServiceProvider"
php artisan migrate
```

### Add HasRoles trait to User model

[](#add-hasroles-trait-to-user-model)

```
use Spatie\Permission\Traits\HasRoles;

class User extends Authenticatable
{
    use HasRoles;
}
```

### Access the UI

[](#access-the-ui)

Navigate to `/permissions` in your application.

⚙️ Configuration
----------------

[](#️-configuration)

Publish the configuration file:

```
php artisan vendor:publish --tag=beartropy-permissions-config
```

```
// config/beartropy-permissions.php
return [
    'prefix' => 'permissions',
    'middleware' => ['web', 'auth', 'can:manage-permissions'],
    'gate' => 'manage-permissions',
    'user_model' => App\Models\User::class,
    'guards' => ['web'],
    'default_guard' => 'web',
    'user_display_field' => 'name',
    'user_search_fields' => ['name', 'email'],
    'group_permissions' => true,
    'permission_group_separator' => '.',
];
```

🎨 Customization
---------------

[](#-customization)

### Publish Views

[](#publish-views)

```
php artisan vendor:publish --tag=beartropy-permissions-views
```

### Publish Translations

[](#publish-translations)

```
php artisan vendor:publish --tag=beartropy-permissions-lang
```

📝 Permission Naming Convention
------------------------------

[](#-permission-naming-convention)

Use dot notation for automatic grouping:

PermissionGroup`users.view`users`users.create`users`posts.edit`posts`settings.view`settings🌐 Internationalization
----------------------

[](#-internationalization)

The package includes translations for:

- 🇪🇸 Spanish (es)
- 🇺🇸 English (en)

Add more languages by publishing translations and creating new language files.

📦 Requirements
--------------

[](#-requirements)

- PHP 8.2+
- Laravel 10.x or 11.x
- Livewire 3.x
- spatie/laravel-permission ^6.0
- beartropy/ui ^1.0
- beartropy/tables ^1.0

🤝 Contributing
--------------

[](#-contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

📄 License
---------

[](#-license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

Note

**Disclaimer**: This software is provided "as is", without warranty of any kind, express or implied. Use at your own risk.

###  Health Score

44

—

FairBetter than 90% of packages

Maintenance98

Actively maintained with recent releases

Popularity17

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity43

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 52.6% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~23 days

Recently: every ~29 days

Total

8

Last Release

8d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/222533003?v=4)[beartropy](/maintainers/beartropy)[@beartropy](https://github.com/beartropy)

---

Top Contributors

[![smithingdev](https://avatars.githubusercontent.com/u/257023556?v=4)](https://github.com/smithingdev "smithingdev (10 commits)")[![beartropy](https://avatars.githubusercontent.com/u/222533003?v=4)](https://github.com/beartropy "beartropy (9 commits)")

---

Tags

spatielaravellivewirerolespermissionsbeartropy

###  Code Quality

TestsPest

### Embed Badge

![Health badge](/badges/beartropy-permissions/health.svg)

```
[![Health](https://phpackages.com/badges/beartropy-permissions/health.svg)](https://phpackages.com/packages/beartropy-permissions)
```

###  Alternatives

[spatie/laravel-permission

Permission handling for Laravel 12 and up

12.9k102.4M1.4k](/packages/spatie-laravel-permission)[bezhansalleh/filament-shield

Filament support for `spatie/laravel-permission`.

2.8k3.9M129](/packages/bezhansalleh-filament-shield)[chiiya/filament-access-control

Admin user, role and permission management for Laravel Filament

21852.5k](/packages/chiiya-filament-access-control)[wijzijnweb/laravel-inertia-permissions

Easy to use package to implement Spatie's Permissions package into Inertia Laravel projects.

205.3k](/packages/wijzijnweb-laravel-inertia-permissions)[tonystore/livewire-permission-manager

Package that provides a graphical interface to manage roles and permissions.

181.1k](/packages/tonystore-livewire-permission-manager)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
