verecom / admin
Admin Panel for Laravel 4 with User, Groups and Permissions management using Cartalyst Sentry as auth provider
Installs: 129
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 3
Forks: 1
Open Issues: 0
Language:JavaScript
Requires
- php: >=5.4.0
- anahkiasen/former: 3.5.*
- cartalyst/sentry: 2.1.*
- illuminate/support: ~4
This package is not auto-updated.
Last update: 2024-11-19 09:21:52 UTC
README
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 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
- Dashborad Page in Admin
- Send Activation code by email when user register
- Password reset/reminder
- unit test… started reading Laravel Testing decoded ;-)
- Documentation