Litepie / User by Renfos

User bundle for Lavalite
159
0
2
Package Data
Maintainer Username: Renfos
Maintainer Contact: info@renfos.com (Renfos Technologies Pvt. Ltd.)
Package Create Date: 2016-02-21
Package Last Update: 2023-12-08
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-23 03:14:29
Package Statistics
Total Downloads: 159
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 2
Total Forks: 1
Total Open Issues: 0

This is a Laravel 5 package that provides user management facility for lavalite framework.

Installation

Begin by installing this package through Composer. Edit your project's composer.json file to require litepie/user.

"litepie/user": "dev-master"

Next, update Composer from the Terminal:

composer update

Once this operation completes execute below cammnds in command line to finalize installation.

Litepie\User\Providers\UserServiceProvider::class,

And also add it to alias

'User'  => Litepie\User\Facades\User::class,

Use the below commands for publishing

Migration and seeds

php artisan vendor:publish --provider="Litepie\User\Providers\UserServiceProvider" --tag="migrations"
php artisan vendor:publish --provider="Litepie\User\Providers\UserServiceProvider" --tag="seeds"

Configuration

php artisan vendor:publish --provider="Litepie\User\Providers\UserServiceProvider" --tag="config"

Language

php artisan vendor:publish --provider="Litepie\User\Providers\UserServiceProvider" --tag="lang"

Views public and admin

php artisan vendor:publish --provider="Litepie\User\Providers\UserServiceProvider" --tag="view-public"
php artisan vendor:publish --provider="Litepie\User\Providers\UserServiceProvider" --tag="view-admin"

Publish admin views only if it is necessary.

Usage