abianbiya / laralag
Laralag CRUD Generator and Starter Access Management
Installs: 121
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:JavaScript
Requires
- php: ^8.2
- laravel/breeze: ^2.0 || ^3.0
- laravel/framework: ^11.0 || ^12.0
- laravel/tinker: ^2.9
- livewire/livewire: ^3.4
- livewire/volt: ^1.0
- spatie/laravel-backup: ^8.4 || ^9.0
- spatie/laravel-html: ^3.7
Requires (Dev)
- orchestra/testbench: ^6.0 || ^7.0
- phpunit/phpunit: ^9.0
- dev-master
- 1.2.2
- 1.2.1
- 1.2
- 1.0.1
- 1.0.0
- 0.3.3
- 0.3.2
- 0.3.1
- 0.3
- 0.2.16
- 0.2.15
- 0.2.14
- 0.2.13
- 0.2.12
- 0.2.11
- 0.2.10
- 0.2.9
- 0.2.8.6
- 0.2.8.5
- 0.2.8.4
- 0.2.8.3
- 0.2.8.2
- 0.2.8.1
- 0.2.8
- 0.2.7.3
- 0.2.7.2
- 0.2.7.1
- 0.2.7
- 0.2.6
- 0.2.5.8
- 0.2.5.7
- 0.2.5.6
- 0.2.5.5
- 0.2.5.4
- 0.2.5.3
- 0.2.5.2
- 0.2.5.1
- 0.2.5
- 0.2.4.6
- 0.2.4.5
- 0.2.4.4
- 0.2.4.3
- 0.2.4.2
- 0.2.4.1
- 0.2.4
- 0.2.3.1
- 0.2.3
- 0.2.2
- 0.2.1
- 0.2
- 0.1
This package is auto-updated.
Last update: 2025-03-08 16:36:41 UTC
README
This package adds ability to generate CRUD based on the table and manage access users and roles.
Installation
You can install the package via composer:
composer require abianbiya/laralag
and then run
php artisan lag:install
then add the HasUuids
and HasPermissions
traits to your app/Models/User.php
use Abianbiya\Laralag\Traits\HasPermissions; use Illuminate\Database\Eloquent\Concerns\HasUuids; class User extends Authenticatable { use HasFactory, Notifiable, HasUuids, HasPermissions; // rest of the code
and you are ready.
Usage
Generating the CRUD
- Make the migration and do migrate
- Run artisan make module with the table name in StudlyCase
php artisan make:module Post
Testing
composer test
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email mail.anbiya@gmail.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.
Laravel Package Boilerplate
This package was generated using the Laravel Package Boilerplate.