Giter Site home page Giter Site logo

iliyazelenko / admin Goto Github PK

View Code? Open in Web Editor NEW

This project forked from sleeping-owl/admin

0.0 1.0 0.0 3.47 MB

Administrative interface builder for Laravel

Home Page: http://sleeping-owl.github.io/

License: MIT License

JavaScript 67.40% CSS 2.39% HTML 0.54% PHP 29.68%

admin's Introduction

Laravel 5 Admin Module

Latest Stable Version License

Note: if you are looking for the version for Laravel 4.2 check out laravel-4.2 branch.

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 directly):

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

        Laravel 4.1 - 5.0
    'SleepingOwl\Admin\AdminServiceProvider',
    'Illuminate\Html\HtmlServiceProvider',
    
        Laravel 5.1.*
        SleepingOwl\Admin\AdminServiceProvider::class,
    Illuminate\Html\HtmlServiceProvider::class,
    
  3. Add this to the facades in config/app.php:

        Laravel 4.1 - 5.0
    'Admin'				=> 'SleepingOwl\Admin\Admin',
    'AdminAuth'			=> 'SleepingOwl\AdminAuth\Facades\AdminAuth',
    'AdminRouter'       => 'SleepingOwl\Admin\Facades\AdminRouter',
    'AssetManager' 		=> 'SleepingOwl\Admin\AssetManager\AssetManager',
    'Column'   			=> 'SleepingOwl\Admin\Columns\Column',
    'FormItem' 			=> 'SleepingOwl\Admin\Models\Form\FormItem',
    'ModelItem'			=> 'SleepingOwl\Admin\Models\ModelItem',
    
    'Form'      => 'Illuminate\Html\FormFacade',
    'Html'      => 'Illuminate\Html\HtmlFacade',
    
        Laravel 5.1.*
    'Admin'				=> SleepingOwl\Admin\Admin::class,
    'AdminAuth'			=> SleepingOwl\AdminAuth\Facades\AdminAuth::class,
    'AdminRouter'       => SleepingOwl\Admin\Facades\AdminRouter::class,
    'AssetManager' 		=> SleepingOwl\Admin\AssetManager\AssetManager::class,
    'Column'   			=> SleepingOwl\Admin\Columns\Column::class,
    'FormItem' 			=> SleepingOwl\Admin\Models\Form\FormItem::class,
    'ModelItem'			=> SleepingOwl\Admin\Models\ModelItem::class,
    
    'Form'      => Illuminate\Html\FormFacade::class,
    'Html'      => Illuminate\Html\HtmlFacade::class,
    
  4. Run this command in terminal (if you want to know what exactly this command makes, see install command documentation):

    $ php artisan vendor:publish
    $ 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.

Support Library

You can donate via PayPal or in BTC: 13k36pym383rEmsBSLyWfT3TxCQMN2Lekd

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.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.