pratiksh / adminetic
Admin Panel Starter Kit
Installs: 1 366
Dependents: 1
Suggesters: 0
Security: 0
Stars: 44
Watchers: 2
Forks: 15
Open Issues: 0
Language:JavaScript
Requires
- php: ^7.4|^8.0
- doctrine/dbal: ^3.6
- drh2so4/thumbnail: ^1.0
- laravel/socialite: ^5.2
- laravel/ui: *
- livewire/livewire: ^2.4
- spatie/laravel-activitylog: ^3.0|^4.0
Requires (Dev)
- barryvdh/laravel-debugbar: ^3.5
- beyondcode/laravel-query-detector: ^1.5
- orchestra/testbench: ^6.0
- phpunit/phpunit: ^9.0
- dev-main
- v2.2.0
- v2.1.1
- v2.1.0
- v2.0.13
- v2.0.12
- v2.0.11
- v2.0.10
- v2.0.9
- v2.0.8
- v2.0.7
- v2.0.6
- v2.0.5
- v2.0.4
- v2.0.3
- v2.0.2
- v2.0.1
- v2.0.0
- v1.9.1
- v1.9.0
- v1.8.5
- v1.8.4
- v1.8.3
- v1.8.2
- v1.8.1
- v1.8.0
- v1.7.2
- v1.7.1
- v1.7.0
- v1.6.0
- v1.5.3
- v1.5.2
- v1.5.1
- v1.5.0
- v1.4.11
- v1.4.10
- v1.4.9
- v1.4.8
- v1.4.7
- v1.4.6
- v1.4.5
- v1.4.4
- v1.4.3
- v1.4.2
- v1.4.1
- v1.4.0
- v1.3.3
- v1.3.2
- v1.3.1
- v1.3.0
- v1.2.0
- v1.1.0
- v1.0.0
- dev-analysis-16Do6P
- dev-analysis-16DZpP
- dev-analysis-N4Q3ae
- dev-analysis-e0KW3a
- dev-analysis-KoK909
This package is auto-updated.
Last update: 2024-11-02 09:21:08 UTC
README
Headstart your project with adminetic admin panel with single command.
For detailed documentaion visit Adminetic Documentation
Contains : -
- 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
Installation Via Adminetic CLI
Make sure to install adminetic cli
composer global require adminetic/cli
Make sure that you have created database named same as ur project_name
adminetic new project_name
All your setup process will be automated.
Installation
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
Notice
Stay tuned for futher documentaion.
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 pratikdai404@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.