jacksonwebservices/laravel-user-suite

User Management in Laravel

Installs: 1 804

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 1

Type:laravel-user-suite

v0.0.8 2016-06-01 17:55 UTC

This package is not auto-updated.

Last update: 2024-04-27 23:11:49 UTC


README

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