ym/umi
Laravel PHP Framework
中文介绍(https://github.com/taoyu65/UMIAdmin/blob/master/readme_ch.md)
Umi admin is powerful backend management system, including
- BREAD system (Browse, Read, Edit, Add, & Delete), made for Laravel 5.3.
- RBAC system (role and permission control) including 2 parts, table of database (combine with BREAD) and web page url control
- data table search function with customized searching option
- customized relation of table for table's delete or update
- display any foreign key to any format you want to show on the web page (like foreign key to drop down list or text box or pop up a window to show)
installation
- install composer and laravel 5.3 Please install correctly. recommends use the follow command
composer create-project --prefer-dist laravel/laravel umi_admin 5.3.*
- install UMI Admin.
composer require ym/umi v0.1.2.* If not prefer to use composer to install, please read https://github.com/taoyu65/UMIAdmin/wiki/install_en
- config (.env)
DB_HOST=localhost DB_DATABASE=new a null database DB_USERNAME=user name DB_PASSWORD=password
- add server provider to "config/app.php"
YM\UmiServiceProvider::class, YM\umiAuth\umiAuthServiceProvider::class,
- run command to install application and config file
php artisan umi:install (option for choosing language 1=chinese 2=english) input number then press enter. (warning:if need to change language for database after installation only run command php artisan umi:install --lang-zh-only / --lang-en-only)
- setting language:
in the file config/app.php, 'locale' => 'zh_cn' or 'en'
- renew app_key, run command: $ php artisan key:generate
- ok, let's start. warning: Please keep the new database is empty before install application, or empty database before run the installation command
图片

License
The Laravel framework is open-sourced software licensed under the MIT license.
Related Packages
Front-end for the Shinboi Auth system of Users / Roles / Permissions in Laravel...
Backend interface for handling CRUD operations on your Laravel Eloquent models.
crud widgets for laravel 5.1, to make an admin in few lines of code
Backend interface for handling CRUD operations on your Laravel Eloquent models.