Skip to content
This repository has been archived by the owner on May 20, 2021. It is now read-only.

Latest commit

 

History

History
44 lines (27 loc) · 917 Bytes

README.md

File metadata and controls

44 lines (27 loc) · 917 Bytes

Build Status Laravel User Suite

$ composer require jacksonwebservices/laravel-user-suite

Connect the Service Provider

Register this provider JWS\UserSuite\UserSuiteServiceProvider::class in app.php

Publish Files

$ php artisan vendor:publish

Config file

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.

Migrate Files

$ php artisan vendor:migrate 

Update User Model

Add UserSuite Trait to the user model

use JWS\UserSuite\UserSuite;

class User extends Authenticatable
{
     use UserSuite;