nomercy / adminseeder
This package creates an admin account with .env credentials.
1.0.0
2020-12-04 11:43 UTC
This package is auto-updated.
Last update: 2025-03-28 08:50:13 UTC
README
This package creates an admin account with .env credentials.
It saves you creating your account after every migrate:fresh command.
Install
composer require nomercy/adminseeder
add this to your DatabaseSeeder class.
$this->call(AdminSeeder::class);
Create these entries in your .env file.
By default it creates a user with admin@example.com, password and a random 60 string
ADMIN_EMAIL=
ADMIN_PASSWORD=
ADMIN_API_TOKEN=
php artisan migrate:fresh --seed