- PHP 5.4 or higher
- Admin theme now using AdminLTE
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.
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.
For more documentation please see wiki part of this repo.
https://www.dropbox.com/s/foyidbk7fzqywco/pingpong-admin-tutorial.mp4
- Add support for all database drivers.
- Add more tests.
This package is open-sourced software licensed under The BSD 3-Clause License