Skip to content

Create, manage and delete the standard App\User model throgh your terminal

License

Notifications You must be signed in to change notification settings

ecomputer/laravel-users-cli

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel users CLI

Create, manage and delete the standard App\User model throgh your terminal

Installation

  1. Run on your Laravel project
composer require ecomputer/laravel-users-cli
  1. In your config/app.php file, register Ecomputer\LaravelUsersCLI\LaravelUsersCLIServiceProvider::class as a new provider
'providers' => [
  // ...
  Ecomputer\LaravelUsersCLI\LaravelUsersCLIServiceProvider::class,
  // ...
]
  1. Done!

Example

List command example

Available commands

Create

Create a basic Laravel user, step by step

php artisan ecomputer:users:create

Delete

Delete 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:delete

If you know the ID of the user you want to delete, just pass it as a parameter.

php artisan ecomputer:users:delete --id=1

In all cases, the assistant will be gentle and will ask you for confirmation (defaults to no, for avoiding accidents).

List

Gives a complete list of all the registered users.

php artisan ecomputer:users:list

About

Create, manage and delete the standard App\User model throgh your terminal

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages