Skip to content

Lysice/admin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Intro

summerblue/administrator 后台管理插件图片上传暂时不支持oss或者其他上传方式 魔改了一版 允许你按照自己的方式上传图片并返回相应的图片链接.

Forked from FrozenNode/Laravel-Administrator with the following changes:

  • UI Improved
  • UX Improved (Editor view stick, hover effect etc.)
  • Model deletion with Sweet alert confirmation
  • Batch model deletion
  • Refresh btn
  • Reduce page css and js file request number
  • Edit view hint

only intent to support Laravel 5.1.*

1

2

Install

1. composer require

composer require "lysice/admin:^1.2.2"

2. add provider

Edit config/app.php in providers array add provider:

'providers' => [
	Frozennode\Administrator\AdministratorServiceProvider::class,
]

3. publish assets/config

php artisan vendor:publish --provider="Frozennode\Administrator\AdministratorServiceProvider"

Read the docs: http://administrator.frozennode.com

-- end