2017 © Pedro Peláez
 

library admin

forone laravel 5.1 admin

image

forone/admin

forone laravel 5.1 admin

  • Thursday, August 20, 2015
  • by yangyugang
  • Repository
  • 12 Watchers
  • 111 Stars
  • 284 Installations
  • CSS
  • 0 Dependents
  • 0 Suggesters
  • 26 Forks
  • 1 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

由于项目重构修改内容较多,现启用新的项目库,该项目不再维护更新,请点击访问新库, (*1)

Features

  1. Role and permissions management
  2. Html and Form macros
  3. Rapid Model management

Screenshots

Web

, (*2)

Mobile

, (*3)

ForoneAdmin

To install this package you will need:, (*4)

  • 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., (*5)

"require": {
    "forone/admin": "dev-master"
}

Or you can run the composer require command from your terminal., (*6)

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 to dev., (*7)

Once the package is installed the next step is dependant on which framework you're using., (*8)

Laravel

Open config/app.php and register the required service provider and aliases., (*9)

'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:, (*10)

php artisan vendor:publish --provider="Forone\Admin\Providers\ForoneServiceProvider" --force

Publishing Defender configuration file and migrations, (*11)

php artisan vendor:publish --provider="Artesaos\Defender\Providers\DefenderServiceProvider"

Init data, (*12)

php artisan db:init

Backup database, (*13)

php artisan db:backup

clear database, (*14)

php artisan db:clear

upgrade database, (*15)

php artisan db:upgrade

The Versions