jacksonwebservices / laravel-user-suite by joshchandler

User Management in Laravel
1,804
1
1
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-06-25 15:13:13
Package Statistics
Total Downloads: 1,804
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 1
Total Watchers: 1
Total Forks: 1
Total Open Issues: 0

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;