Create, manage and delete the standard App\User model throgh your terminal
- Run on your Laravel project
composer require ecomputer/laravel-users-cli- In your
config/app.phpfile, registerEcomputer\LaravelUsersCLI\LaravelUsersCLIServiceProvider::classas a new provider
'providers' => [
// ...
Ecomputer\LaravelUsersCLI\LaravelUsersCLIServiceProvider::class,
// ...
]- Done!
Create a basic Laravel user, step by step
php artisan ecomputer:users:createDelete a user. If you run the command without parameters Artisan will give you a choice filled with all the registered users. You can select an user with the arrow keys, with a numeric option, or autocompleting while writing the name of the user.
php artisan ecomputer:users:deleteIf you know the ID of the user you want to delete, just pass it as a parameter.
php artisan ecomputer:users:delete --id=1In all cases, the assistant will be gentle and will ask you for confirmation (defaults to no, for avoiding accidents).
Gives a complete list of all the registered users.
php artisan ecomputer:users:list