Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 642 Bytes

README.md

File metadata and controls

30 lines (21 loc) · 642 Bytes

Laravel User Command

Software License

Create a user with artisan command.

Install

Install via composer

composer require rap2hpoutre/create-user-command

Add the Create User command to app/Console/Kernel.php in protected $commands array

\Rap2hpoutre\CreateUser\Command::class,

Usage

Define fillable attributes in your User class.

protected $fillable = ['name', 'email', 'role'];

Then, run user:create command.

demo

Why

Sometimes, I have to manually create user (with no web interface).