| Package Data | |
|---|---|
| Maintainer Username: | rap2hpoutre |
| Maintainer Contact: | raphaelht@gmail.com (rap2h) |
| Package Create Date: | 2016-12-15 |
| Package Last Update: | 2021-03-17 |
| Home Page: | |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-10-27 03:20:48 |
| Package Statistics | |
|---|---|
| Total Downloads: | 12,915 |
| Monthly Downloads: | 1 |
| Daily Downloads: | 0 |
| Total Stars: | 20 |
| Total Watchers: | 3 |
| Total Forks: | 2 |
| Total Open Issues: | 1 |
Create a user with artisan command.
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,
Define fillable attributes in your User class.
protected $fillable = ['name', 'email', 'role'];
Then, run user:create command.

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