Skip to content

harryxu/cpanel

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel Admin Panel

Laravel 4 package used to provide an admin panel with user, groups and permissions management. This package is currently under active development.

##Features

  • Cartalyst Sentry package
  • Anahkiasen Former package
  • Twitter Bootstrap 2.3.1
  • Font-awesome 3.2.0
  • Users, Groups and Permissions out of the box.
  • Base controller for admin panel development
  • Most of the views can be replaced by your own in the config file

##Installation Begin by installing this package through Composer. Edit your project's composer.json file to require stevemo/cpanel.

{
    "require": {
        "stevemo/cpanel": "dev-develop"
    }
}

Update your packages with composer update or install with composer install.

You need to add the following service provider. Open app/config/app.php, and add a new items to the providers array.

Former\FormerServiceProvider
Cartalyst\Sentry\SentryServiceProvider
Stevemo\Cpanel\CpanelServiceProvider

Then add the following Class Aliases

'Former' => 'Former\Facades\Illuminate',
'Sentry' => 'Cartalyst\Sentry\Facades\Laravel\Sentry',

Finally run the following command in the terminal. php artisan cpanel:install This will publish the config files for Cartalyst/Sentry, Anahkiasen/Former and Stevemo/Cpanel also it will run the migration.

To create a user simply do php artisan cpanel:user

Done! Just go to http://localhost/admin to access the admin panel.

##Missing

  • Send Activation code by email when user register
  • Password reset/reminder
  • unit test… started reading Laravel Testing decoded ;-)
  • Documentation

About

Admin Panel for Laravel 4

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 45.6%
  • PHP 42.4%
  • Perl 11.4%
  • Shell 0.6%