capmega / user-crud
This is a library to create, delete and update an user
dev-main
2022-02-19 02:33 UTC
This package is auto-updated.
Last update: 2026-02-27 23:20:19 UTC
README
A package to create, delete and update users
Installation
You can install the package via composer:
composer require capmega/user-crud
If your laravel version is <7 add this code in your composer.js file:
"minimum-stability": "dev", "prefer-stable" : true
To detect the routes file it is necessary to add the following code in config / app.php
'providers' => [ Capmega\UserCrud\UserCrudServiceProvider::class, ],
Configuration
To be able to use the content of the package it is necessary to publish it, with the following command it will be enough:
php artisan vendor:publish --provider="Capmega\UserCrud\UserCrudServiceProvider" --tag=users-crud --force