This repository has been archived on 2024-05-20. You can view files and clone it, but cannot push or open issues or pull requests.
PriceyBotPanel/database/seeders/PriceyBotSeeder.php

26 lines
560 B
PHP

<?php
namespace Database\Seeders;
use App\Enums\UserStatus;
use App\Models\User;
use Illuminate\Database\Seeder;
use Illuminate\Support\Str;
class PriceyBotSeeder extends Seeder
{
public function run(): void
{
User::create([
'firstname' => 'Pricey',
'lastname' => 'Bot',
'email' => 'priceybot@nexigen.digital',
'uuid' => '',
'profile' => '',
'status' => UserStatus::ACTIVE,
'is_admin' => true,
'password' => Str::password(),
]);
}
}