forone / admin
forone laravel 5.1 admin
Installs: 290
Dependents: 0
Suggesters: 0
Security: 0
Stars: 103
Watchers: 12
Forks: 22
Open Issues: 0
Language:CSS
Requires
- php: >=5.5.9
- doctrine/dbal: ^2.5
- illuminate/html: 5.0.0
- illuminate/routing: 5.1.*
- illuminate/support: 5.1.*
- orangehill/iseed: ^2.0
- qiniu/php-sdk: v7.0.4
- zizaco/entrust: dev-laravel-5@dev
This package is not auto-updated.
Last update: 2024-11-13 09:32:58 UTC
README
由于项目重构修改内容较多,现启用新的项目库,该项目不再维护更新,请点击访问新库
Features
- Role and permissions management
- Html and Form macros
- Rapid
Model
management
Screenshots
Web
Mobile
ForoneAdmin
To install this package you will need:
- Laravel 5.1+
- PHP 5.5.9+
You must then modify your composer.json
file and run composer update
to include the latest version of the package in your project.
"require": { "forone/admin": "dev-master" }
Or you can run the composer require
command from your terminal.
composer require forone/admin:dev-master
At this time the package is still in a developmental stage and as such does not have a stable release. You may need to set your
minimum-stability
todev
.
Once the package is installed the next step is dependant on which framework you're using.
Laravel
Open config/app.php
and register the required service provider and aliases.
'providers' => [ Forone\Admin\Providers\ForoneServiceProvider::class ]
'aliases' => [ 'Form' => Illuminate\Html\FormFacade::class, 'Html' => Illuminate\Html\HtmlFacade::class, ]
If you'd like to make configuration changes in the configuration file you can pubish it with the following Aritsan command:
php artisan vendor:publish --provider="Forone\Admin\Providers\ForoneServiceProvider" --force
Publishing Defender configuration file and migrations
php artisan vendor:publish --provider="Artesaos\Defender\Providers\DefenderServiceProvider"
Init data
php artisan db:init
Backup database
php artisan db:backup
clear database
php artisan db:clear
upgrade database
php artisan db:upgrade