exodusanto / Laravel-Admin by exodusanto

A database interface package for Laravel (Legacy of Frozennode Laravel-Administrator)
10,032
38
3
Package Data
Maintainer Username: exodusanto
Maintainer Contact: jan@frozennode.com (Jan Hartigan)
Package Create Date: 2017-02-11
Package Last Update: 2023-10-26
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-18 15:24:53
Package Statistics
Total Downloads: 10,032
Monthly Downloads: 23
Daily Downloads: 0
Total Stars: 38
Total Watchers: 3
Total Forks: 23
Total Open Issues: 5

Laravel Administrator (New Version)

Administrator is an administrative interface builder for Laravel. With Administrator you can visually manage your Eloquent models and their relations, and also create stand-alone settings pages for storing site data and performing site tasks.

New Version

Build Status

Composer

To install Administrator as a Composer package to be used with Laravel 5.7, simply run:

composer require "exodusanto/administrator: 5.7.*"

To install Administrator as a Composer package to be used with Laravel 5.6, simply run:

composer require "exodusanto/administrator: 5.6.*"

Once it's installed, you can register the service provider in config/app.php in the providers array:

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

Then publish Administrator's assets with php artisan vendor:publish. This will add the file config/administrator.php. This config file is the primary way you interact with Administrator. This command will also publish all of the assets, views, and translation files.

Laravel 4

If you want to use Administrator with Laravel 4, you need to resolve to Administrator 4:

"exodusanto/administrator": "4.*"

Then publish the config file with php artisan config:publish frozennode/administrator. This will add the file app/config/packages/frozennode/administrator/administrator.php.

Then finally you need to publish the package's assets with the php artisan asset:publish frozennode/administrator command.

Laravel 3

Since Administrator has switched over to Composer, you can no longer use php artisan bundle:install administrator or php artisan bundle:upgrade administrator. If you want to use Administrator with Laravel 3, you must switch to the 3.3.2 branch, download it, and add it in the /bundles/administrator directory and add this to your bundles.php file:

'administrator' => array(
    'handles' => 'admin', //this determines what URI this bundle will use
    'auto' => true,
),

Documentation

The complete docs for Administrator can be found at http://administrator.frozennode.com. You can also find the docs in the /src/docs directory.

Copyright and License

Administrator was written by Jan Hartigan of Frozen Node for the Laravel framework. Administrator is released under the MIT License. See the LICENSE file for details.

Recent Changelog

5.7.0

  • Support: Laravel 5.7

5.6.5

  • Added: Allow custom routes name (#23)

5.6.5

  • Support: PHP 7.2 (#22)

5.6.3

  • Added: Cloud upload options

5.6.0

  • Support: Laravel 5.6

5.5.3

  • Added: Image field upload to Storage (ex. S3)

5.5.1

  • Bugfix: Fix relation BelongsToMany methods

5.5.0

  • Added: L5.5 support
  • Added: Laravel Package Auto-Discovery

5.4.0

  • Added: New layout
  • Added: Laravel 5.4 compatibility
  • Added: Title config String or Closure
  • Added: Favicon (png only) config String or Closure
  • Added: ENUM config Array or Closure
  • Added: New ckeditor layout
  • Added: Images config:
    • Test resize: prevent stretch of image
    • Incremental naming: name*_n* if already exist
  • Bugfix: wysiwyg loading on settings