yuricronos / volt-permission
A permission management system built with Livewire, Volt, and Spatie, offering a seamless way to manage user roles and access control in real-time.
Requires
- php: ^8.2|^8.3|^8.4
- laravel/framework: ^12.0
- laravel/tinker: ^2.10.1
- livewire/flux: ^2.1.1
- livewire/volt: ^1.7.0
- spatie/laravel-permission: ^6.0@dev
This package is auto-updated.
Last update: 2025-10-03 03:29:50 UTC
README
A permission management system built with Livewire, Volt, and Spatie, offering a seamless way to manage user roles and access control in real-time.
artisan command
Use the artisan command `vendor:publish` with the `--tag=volt-permission` option to publish the Volt Permission package's configuration, views, or other assets to your application's directory. This allows you to customize the package's behavior and appearance according to your application's requirements.
Example:
php artisan vendor:publish --tag=volt-permission
New Route Alias
When using the Volt Permission UI, a new route alias `volt.roles` is created. You can use this alias in your links to navigate to the roles management page seamlessly.
Example:
<a href="{{ route('volt.roles') }}">Manage Roles</a>