rahimov / admin

Administrative interface builder for Laravel

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Laravel 4 Admin Module

SleepingOwl Admin is administrative interface builder for Laravel.

It includes:

Installation

  1. Require this package in your composer.json and run composer update (or run composer require sleeping-owl/admin:1.x directly):

    "sleeping-owl/admin": "1.*"
    
  2. After composer update, add service providers to the app/config/app.php

    'SleepingOwl\Admin\AdminServiceProvider',
    
  3. Add this to the facades in app/config/app.php:

    'Admin'				=> 'SleepingOwl\Admin\Admin',
    'AdminAuth'			=> 'SleepingOwl\AdminAuth\Facades\AdminAuth',
    'AssetManager' 		=> 'SleepingOwl\Admin\AssetManager\AssetManager',
    'Column'   			=> 'SleepingOwl\Admin\Columns\Column',
    'FormItem' 			=> 'SleepingOwl\Admin\Models\Form\FormItem',
    'ModelItem'			=> 'SleepingOwl\Admin\Models\ModelItem',
    
  4. Run this command in terminal (if you want to know what exactly this command makes, see install command documentation):

    $ php artisan admin:install
    

Documentation

Documentation can be found at sleeping owl documentation. You can also find it in the /src/docs directory.

Demo Application

View live demo.

Copyright and License

Admin was written by Sleeping Owl for the Laravel framework and is released under the MIT License. See the LICENSE file for details.

About

Administrative interface builder for Laravel

License:MIT License