Package Data | |
---|---|
Maintainer Username: | joshchandler |
Maintainer Contact: | jchandler@jacksonfurnind.com (Joshua Chandler) |
Package Create Date: | 2016-05-16 |
Package Last Update: | 2016-06-01 |
Home Page: | http://laravel-user-suite.readthedocs.io/ |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-23 03:17:07 |
Package Statistics | |
---|---|
Total Downloads: | 1,806 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 1 |
Total Watchers: | 1 |
Total Forks: | 1 |
Total Open Issues: | 0 |
$ composer require jacksonwebservices/laravel-user-suite
Register this provider JWS\UserSuite\UserSuiteServiceProvider::class
in app.php
$ php artisan vendor:publish
If you want to change the migration schema to something other than the default change the database
configuration setting.
This uses the default App\User
model by default, but you can change that to whatever user model fits your project.
$ php artisan vendor:migrate
Add UserSuite Trait to the user model
use JWS\UserSuite\UserSuite;
class User extends Authenticatable
{
use UserSuite;