3sure/administrator

A database interface package for Laravel, modified!
34
Install
composer require 3sure/administrator
Latest Version:v1.0.1
PHP:>=5.4.0
License:MIT
Last Updated:Jul 28, 2016
Links: GitHub  ·  Packagist
Maintainer: yanson-3sure

Intro

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

Install

1. composer require

composer require "3sure/administrator"

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

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

-- end