$ 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;