softwaretours / users
Smart and flexible way to boost your app development start
Installs: 42
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Language:JavaScript
Requires
- php: >=5.5.9
- bican/roles: 2.1.*
- laravelcollective/html: ^5.2.0
README
Laravel User Management package is smart and flexible way to boost your app development cycle.
Overview
Simple app which enables user, roles and permissions management for your application. Software Tours Laravel User Management do two things:
- standardize views for laravel default auth (enabled reuse of same code registration from 3 different places)
- remove foreign key restrictions for roles and permissions tables
Insallation
We recommend installation of package first on fresh laravel 5.2 app.
- composer require softwaretours/users
- Add service provider in config/app.php
Bican\Roles\RolesServiceProvider::class,
Collective\Html\HtmlServiceProvider::class,
SoftwareTours\Users\Providers\UsersProvider::class,
- Add aliases in config/app.php
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
- php artisan vendor:publish --force
- Add service provider in config/app.php
App\Repositories\Users\BackendServiceProvider::class,
App\Repositories\Users\Permissions\BackendServiceProvider::class,
App\Repositories\Users\Roles\BackendServiceProvider::class,
- Change default User model in
config/auth.php
to'model' => App\Models\Users\User::class,
- composer dump-autoload
- Create new database and set credentials in .env file
- php artisan migrate --seed
- Set writable permission to
public/user
folder
We recommend setting bootstrap
and storage
folders permission after installation.
NOTE: When you run php artisan vendor:publish it do following commands:
- Overrides /app/http/routes.php
- Database migrations (remove foreign key restrictions for bican package)
- Models
- Repositories
- Controles
- Models
- Views
- Assets (css, img, and js files for html layout)
- Event, Listener and EventProvider
Dependencies
Laravel User Management is build on top of Laravel default auth https://laravel.com/docs/5.2/authentication. It uses 2 package for adding User Management CRUD functionality.
Dependencies is automatically required and installed by composer.json.
-
Bican permisions and roles package https://github.com/romanbican/roles
-
Laravel Collective Forms & Html https://laravelcollective.com/docs/5.2/html
Credentials
Username: info@cueagents.com
Password: info
TODO
- Clean HTML and CSS files with customized bootstrap
- Work on permission crud, do it more proffesional
- Do user with permissions on crud and datatable
- Create composer
post-update-cmd
which updates and publish entire package all except views: layout, nav, footer and dashboard. (https://getcomposer.org/doc/articles/scripts.md).