Headstart your project with adminetic admin panel with single command.
For detailed documentaion visit Adminetic Documentation
- CRUD Scaffold Generator
- ACL Generator(BREAD Control)
- Super Admin Generator
- Repo Pattern Generator
- API Scaffold Generator
- User Management
- Role and Permission Management
- Activity Management
- Auth Management
- Setting Management
- Preference Management
- Theme Customization
- Plugin Extensions
You can install the package via composer:
composer require pratiksh/adminetic
Add AdmineticUser Trait. In your user model,
use Pratiksh\Adminetic\Traits\AdmineticUser;
class User extends Authenticatable
{
use AdmineticUser;
....
}
Install Adminetic
php artisan install:adminetic
Migrate Database
php artisan migrate
Import Data
php artisan adminetic:dummy
Note: If we enable migrate_wth_dummy in adminetic config file dummy data are seeded on migration. Then above command can be avoided.
Use adminetic auth route. In web.php paste following
Route::admineticAuth();
This allows you to have necessary login credential
Admin Credential email : admin@admin.com password: admin123
Stay tuned for futher documentaion.
composer test
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email pratikdai404@gmail.com instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.
This package was generated using the Laravel Package Boilerplate.