2017 © Pedro Peláez
 

library admin

Admin Panel for Laravel 4 with User, Groups and Permissions management using Cartalyst Sentry as auth provider

image

verecom/admin

Admin Panel for Laravel 4 with User, Groups and Permissions management using Cartalyst Sentry as auth provider

  • Wednesday, October 14, 2015
  • by zikezhang
  • Repository
  • 2 Watchers
  • 4 Stars
  • 118 Installations
  • JavaScript
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Laravel Admin

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

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., (*2)

{
    "require": {
        "verecom/admin": "dev-master"
    }
}

Update your packages with composer update or install with composer install., (*3)

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

'Former\FormerServiceProvider',
'Cartalyst\Sentry\SentryServiceProvider',
'Verecom\Admin\AdminServiceProvider',

Then add the following Class Aliases, (*5)

'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., (*6)

To create a user simply do php artisan admin:user, (*7)

Done! Just go to http://localhost/admin to access the admin panel., (*8)

To create a user simply do php artisan admin:user, (*9)

Done! Just go to http://localhost/admin to access the admin dashborad., (*10)

Missing

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

The Versions

14/10 2015

dev-master

9999999-dev https://github.com/zikezhang/LaravelAdmin

Admin Panel for Laravel 4 with User, Groups and Permissions management using Cartalyst Sentry as auth provider

  Sources   Download

MIT

The Requires

 

by ZZK

laravel backend admin sentry cartalyst