49 lines
1.3 KiB
PHP
49 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Support\Str;
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Illuminate\Support\Facades\Hash;
|
|
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
|
|
|
class UserSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*/
|
|
public function run(): void
|
|
{
|
|
|
|
DB::table('users')->insert([
|
|
[
|
|
'name' => 'Admin Bebek',
|
|
'username' => 'admin_bebek',
|
|
'password' => Hash::make('b3b3kg1l4'),
|
|
'role' => 'admin',
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
],
|
|
[
|
|
'name' => 'User Cabai',
|
|
'username' => 'user_cabai',
|
|
'password' => Hash::make('cabai123'),
|
|
'role' => 'user',
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
],
|
|
[
|
|
'name' => 'User Jagung',
|
|
'username' => 'user_jagung',
|
|
'password' => Hash::make('jagung456'),
|
|
'role' => 'user',
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
]
|
|
]);
|
|
// User::factory(5)->create();
|
|
}
|
|
}
|