Laravel-Users | A Laravel Users Management Package
A Users Management Package that includes all necessary routes, views, models, and controllers for a user management dashboard and associated pages for managing Laravels built in user scaffolding. Built for Laravel 5.2, 5.3, 5.4, and 5.5+.
- 
Laravel 5.2, 5.3, 5.4, and 5.5+ Example new project creation command: laravel new laravel-users-example
- 
Laravel Authentication Scaffolding Authentication installation commands: php artisan make:authphp artisan migrate
- 
From your projects root folder in terminal run: Laravel 5.2 use: composer require jeremykenedy/laravel-users:1.2.0Laravel 5.3 use: composer require jeremykenedy/laravel-users:1.3.0Laravel 5.4 use: composer require jeremykenedy/laravel-users:1.4.0Laravel 5.5+ use: composer require jeremykenedy/laravel-users
- 
Register Package 
- 
Laravel 5.5 and up Uses package auto discovery feature, no need to edit the config/app.phpfile.
- 
Laravel 5.4 and below Register the package with laravel in config/app.phpunderproviderswith the following:Collective\Html\HtmlServiceProvider::class, jeremykenedy\laravelusers\LaravelUsersServiceProvider::class,
- Register the dependencies aliases
- 
Laravel 5.5 and up Uses package auto discovery feature, no need to edit the config/app.phpfile.
- 
Laravel 5.4 and below In config/app.phpsection underaliaseswith the following:'Form' => Collective\Html\FormFacade::class, 'Html' => Collective\Html\HtmlFacade::class,
- 
Publish the packages language files by running the following from your projects root folder: php artisan vendor:publish --tag=laravelusers
- /users
- /users/{id}
- /users/create
- /users/{id}/edit
(included in this package)
Laravel-Users | A Laravel Users Management Package is open-sourced software licensed under the MIT license









