capmega / user-crud
This is a library to create, delete and update an user
Installs: 26
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:Blade
This package is auto-updated.
Last update: 2025-03-27 21:23:10 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