tarantella110/administrator

A database interface package for Laravel, modified!

9.0.3 2023-05-22 13:26 UTC

This package is auto-updated.

Last update: 2024-04-28 07:38:52 UTC


README

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 "summerblue/administrator:^1.1"

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