/admin

Laravel Admin

Primary LanguageJavaScriptBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

Simple Administrator Package for Laravel 4+

Build Status Latest Stable Version Total Downloads Latest Unstable Version License HHVM Status

Server Requirements

  • PHP 5.4 or higher

What's New

Installation

Open your composer.json file, and add the new required package.

"pingpong/admin": "1.1.*" 

Next, open a terminal and run.

composer update 

Next, Add new service provider in app/config/app.php.

'Pingpong\Admin\Providers\SupportServiceProvider',
'Pingpong\Admin\AdminServiceProvider',

Next, update your user model to extend the Pingpong\Admin\Entities\User class. Looks like this.

// app/model/User.php

class User extends \Pingpong\Admin\Entities\User {}

Next, install the package.

php artisan admin:install

Done.

Screenshot

Build Status

Usage

Browse your app to the url : http://your-host.com/admin. By default the login credentials is pingpong for the username and secret for the password.

Documentation

For more documentation please see wiki part of this repo.

Screencasts

https://www.dropbox.com/s/foyidbk7fzqywco/pingpong-admin-tutorial.mp4

Todos

  • Add support for all database drivers.
  • Add more tests.

License

This package is open-sourced software licensed under The BSD 3-Clause License