litepie / user
The Litepie User package.
v10.2.2
2023-11-13 09:36 UTC
Requires
- php: ^8.1|^8.2
This package is auto-updated.
Last update: 2024-10-08 16:26:02 UTC
README
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.