kornilk / laravel-admin
laravel admin
Requires
- php: >=8.0
- akaunting/laravel-firewall: ^1.3
- altek/accountant: ^4.0
- altek/eventually: ^3.0
- intervention/image: ^2.7
- laravel/framework: >=5.5
- marvinlabs/laravel-discord-logger: ^1.2
- matthiasmullie/minify: ^1.3
- spatie/eloquent-sortable: ^4.3
- symfony/dom-crawler: ~3.1|~4.0|~5.0
Requires (Dev)
- fzaninotto/faker: ~1.4
- laravel/browser-kit-testing: ^6.0
- laravel/laravel: >=10.0
- spatie/phpunit-watcher: ^1.22.0
Suggests
- intervention/image: Required to handling and manipulation upload images (~2.3).
- spatie/eloquent-sortable: Required to built orderable gird.
- dev-master
- 1.8.19.37
- 1.8.19.36
- 1.8.19.35
- 1.8.19.34
- 1.8.19.33
- 1.8.19.31
- 1.8.19.30
- 1.8.19.29
- 1.8.19.28
- 1.8.19.27
- 1.8.19.26
- 1.8.19.25
- 1.8.19.24
- 1.8.19.23
- 1.8.19.22
- 1.8.19.21
- 1.8.19.20
- 1.8.19.19
- 1.8.19.18
- 1.8.19.17
- 1.8.19.16
- 1.8.19.15
- 1.8.19.14
- 1.8.19.13
- 1.8.19.12
- 1.8.19.11
- 1.8.19.10
- 1.8.19.9
- 1.8.19.8
- 1.8.19.7
- 1.8.19.6
- 1.8.19.5
- 1.8.19.4
- 1.8.19.3
- 1.8.19.2
- 1.8.19.1
- 1.8.18.98
- 1.8.18.97
- 1.8.18.96
- 1.8.18.95
- 1.8.18.94
- 1.8.18.93
- 1.8.18.92
- 1.8.18.91
- 1.8.18.90
- 1.8.18.89
- 1.8.18.88
- 1.8.18.87
- 1.8.18.86
- 1.8.18.85
- 1.8.18.84
- 1.8.18.83
- 1.8.18.82
- 1.8.18.81
- 1.8.18.80
- 1.8.18.79
- 1.8.18.78
- 1.8.18.77
- 1.8.18.76
- 1.8.18.75
- 1.8.18.74
- 1.8.18.73
- 1.8.18.72
- 1.8.18.71
- 1.8.18.70
- 1.8.18.69
- 1.8.18.68
- 1.8.18.67
- 1.8.18.66
- 1.8.18.65
- 1.8.18.64
- 1.8.18.63
- 1.8.18.61
- 1.8.18.60
- 1.8.18.59
- 1.8.18.58
- 1.8.18.57
- 1.8.18.56
- 1.8.18.55
- 1.8.18.54
- 1.8.18.53
- 1.8.18.52
- 1.8.18.51
- 1.8.18.50
- 1.8.18.49
- 1.8.18.48
- 1.8.18.47
- 1.8.18.46
- 1.8.18.45
- 1.8.18.44
- 1.8.18.43
- 1.8.18.42
- 1.8.18.41
- 1.8.18.40
- 1.8.18.39
- 1.8.18.38
- 1.8.18.37
- 1.8.18.36
- 1.8.18.35
- 1.8.18.34
- 1.8.18.33
- 1.8.18.32
- 1.8.18.31
- 1.8.18.30
- 1.8.18.29
- 1.8.18.28
- 1.8.18.27
- 1.8.18.26
- 1.8.18.25
- 1.8.18.24
- 1.8.18.23
- 1.8.18.22
- 1.8.18.21
- 1.8.18.20
- 1.8.18.19
- 1.8.18.18
- 1.8.18.17
- 1.8.18.16
- 1.8.18.15
- 1.8.18.14
- 1.8.18.13
- 1.8.18.12
- 1.8.18.11
- 1.8.18.10
- v1.8.18.9
- v1.8.18.8
- v1.8.18.7
- v1.8.18.6
- v1.8.18.5
- v1.8.18.4
- v1.8.18.3
- v1.8.18.2
- v1.8.18.1
- v1.8.18
- v1.8.17.10
- v1.8.17.9
- v1.8.17.8
- v1.8.17.7
- v1.8.17.6
- v1.8.17.5
- v1.8.17.4
- v1.8.17.3
- v1.8.17.2
- v1.8.17.1
- v1.8.17
This package is auto-updated.
Last update: 2025-02-27 16:04:26 UTC
README
⛵laravel-admin
is administrative interface builder for laravel which can help you build CRUD backends just with few lines of code.
Documentation | 中文文档 | Demo | Demo source code | Extensions
Inspired by SleepingOwlAdmin and rapyd-laravel.
Sponsor

Requirements
- PHP >= 7.0.0
- Laravel >= 5.5.0
- Fileinfo PHP Extension
Installation
This package requires PHP 7+ and Laravel 5.5, for old versions please refer to 1.4
First, install laravel 5.5, and make sure that the database connection settings are correct.
composer require encore/laravel-admin
Then run these commands to publish assets and config:
php artisan vendor:publish --provider="Encore\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.
Extensions
Extension | Description | laravel-admin |
---|---|---|
helpers | Several tools to help you in development | ~1.5 |
media-manager | Provides a web interface to manage local files | ~1.5 |
api-tester | Help you to test the local laravel APIs | ~1.5 |
scheduling | Scheduling task manager for laravel-admin | ~1.5 |
redis-manager | Redis manager for laravel-admin | ~1.5 |
backup | An admin interface for managing backups | ~1.5 |
log-viewer | Log viewer for laravel | ~1.5 |
config | Config manager for laravel-admin | ~1.5 |
reporter | Provides a developer-friendly web interface to view the exception | ~1.5 |
wangEditor | A rich text editor based on wangeditor | ~1.6 |
summernote | A rich text editor based on summernote | ~1.6 |
china-distpicker | 一个基于distpicker的中国省市区选择器 | ~1.6 |
simplemde | A markdown editor based on simplemde | ~1.6 |
phpinfo | Integrate the phpinfo page into laravel-admin |
~1.6 |
php-editor python-editor js-editor css-editor clike-editor |
Several programing language editor extensions based on code-mirror | ~1.6 |
star-rating | Star Rating extension for laravel-admin | ~1.6 |
json-editor | JSON Editor for Laravel-admin | ~1.6 |
grid-lightbox | Turn your grid into a lightbox & gallery | ~1.6 |
daterangepicker | Integrates daterangepicker into laravel-admin | ~1.6 |
material-ui | Material-UI extension for laravel-admin | ~1.6 |
sparkline | Integrates jQuery sparkline into laravel-admin | ~1.6 |
chartjs | Use Chartjs in laravel-admin | ~1.6 |
echarts | Use Echarts in laravel-admin | ~1.6 |
simditor | Integrates simditor full-rich editor into laravel-admin | ~1.6 |
cropper | A simple jQuery image cropping plugin. | ~1.6 |
composer-viewer | A web interface of composer packages in laravel. | ~1.6 |
data-table | Advanced table widget for laravel-admin | ~1.6 |
watermark | Text watermark for laravel-admin | ~1.6 |
google-authenticator | Google authenticator | ~1.6 |
Contributors
This project exists thanks to all the people who contribute. [Contribute].
Backers
Thank you to all our backers! 🙏 [Become a backer]
Sponsors
Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]
Other
laravel-admin
based on following plugins or services:
- Laravel
- AdminLTE
- Datetimepicker
- font-awesome
- moment
- Google map
- Tencent map
- bootstrap-fileinput
- jquery-pjax
- Nestable
- toastr
- X-editable
- bootstrap-number-input
- fontawesome-iconpicker
- sweetalert2
License
laravel-admin
is licensed under The MIT License (MIT).