| Package Data | |
|---|---|
| Maintainer Username: | stevemo |
| Maintainer Contact: | steve@stevemo.ca (Steve Montambeault) |
| Package Create Date: | 2013-06-16 |
| Package Last Update: | 2022-04-16 |
| Home Page: | |
| Language: | JavaScript |
| License: | MIT |
| Last Refreshed: | 2025-10-30 15:05:52 |
| Package Statistics | |
|---|---|
| Total Downloads: | 5,761 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 205 |
| Total Watchers: | 27 |
| Total Forks: | 66 |
| Total Open Issues: | 10 |
Laravel 4 package used to provide an admin panel with user, groups and permissions management. This package is currently under active development.
##Features
##Installation
Begin by installing this package through Composer. Edit your project's composer.json file to require stevemo/cpanel.
{
"require": {
"stevemo/cpanel": "dev-master"
}
}
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\Former',
'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