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-01-30 03:07:31 |
Package Statistics | |
---|---|
Total Downloads: | 12,854 |
Monthly Downloads: | 2 |
Daily Downloads: | 0 |
Total Stars: | 20 |
Total Watchers: | 4 |
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).