igorhaf / elevate-admin
elevate admin
Requires
- php: ^8.1
- doctrine/dbal: ^3.10
- laravel/framework: ^12.0
- symfony/dom-crawler: ^6.0
Requires (Dev)
- fakerphp/faker: ^1.9
- intervention/image: ^2.7
- laravel/browser-kit-testing: ^6.0
- laravel/laravel: ^12.0
- spatie/phpunit-watcher: ^1.22.0
Suggests
- intervention/image: Required to handling and manipulation upload images (^2.7).
- spatie/eloquent-sortable: Required to built orderable grid.
This package is not auto-updated.
Last update: 2025-06-21 18:12:58 UTC
README
⛵elevate-admin
is administrative interface builder for laravel which can help you build CRUD backends just with few lines of code.
Inspired and forked from Laravel Admin, special thanks for ([z-song](https://github.com/z-song))].
Requirements
- PHP >= 7.0.0
- Laravel >= 5.5.0
- Fileinfo PHP Extension
Installation
composer require igorhaf/elevate-admin
Then run these commands to publish assets and config:
php artisan vendor:publish --provider="Igorhaf\Admin\AdminServiceProvider"
After run command you can find config file in config/admin.php, in this file you can change the install directory,db connection or table names.
At last run following command to finish install. php artisan admin:install
Open http://localhost/admin/ in browser,use username admin and password admin to login.
Configurations
The file config/admin.php contains an array of configurations, you can find the default configurations in there.
Right to left support
just go to this path <YOUR_PROJECT_PATH>\vendor\igorhaf\elevate-admin\src\Traits\HasAssets.php and modify $baseCss array for loading right to left (rtl) version of bootstap and AdminLTE css files.
bootstrap.min.css change it to bootstrap.rtl.min.css
AdminLTE.min.css change it to AdminLTE.rtl.min.css
Extensions
Extension | Description | elevate-admin |
---|
Contributors
This project exists thanks to all the people who contribute. [Contribute].
Backers
Thank you to all our backers! 🙏 [Become a backer]
...
Planned Features
elevate-admin:
- Upgrade to Laravel 12
- Replace legacy development setup with Laravel Sail
- Migrate front-end styling to Tailwind CSS
- Implement login authentication using Laravel Sanctum
- Modernize JavaScript stack with Vue.js
License
elevate-admin is licensed under The MIT License (MIT).