| Package Data | |
|---|---|
| Maintainer Username: | zikezhang |
| Maintainer Contact: | zhzike@gmail.com (ZZK) |
| Package Create Date: | 2014-12-05 |
| Package Last Update: | 2015-10-14 |
| Language: | JavaScript |
| License: | MIT |
| Last Refreshed: | 2025-10-26 03:02:27 |
| Package Statistics | |
|---|---|
| Total Downloads: | 129 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 4 |
| Total Watchers: | 2 |
| Total Forks: | 1 |
| Total Open Issues: | 0 |
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 verecom/admin.
{
"require": {
"verecom/admin": "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',
'Verecom\Admin\AdminServiceProvider',
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 admin:install This will publish the config files for Cartalyst/Sentry, Anahkiasen/Former and Verecom/Admin also it will run the migration.
To create a user simply do php artisan admin:user
Done! Just go to http://localhost/admin to access the admin panel.
To create a user simply do php artisan admin:user
Done! Just go to http://localhost/admin to access the admin dashborad.
##Missing