27 lines
612 B
PHP
27 lines
612 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class EmployeeSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*/
|
|
public function run(): void
|
|
{
|
|
DB::table('employees')->insert([
|
|
[
|
|
'id' => \Ramsey\Uuid\Uuid::uuid4()->toString(),
|
|
'user_id' => '69b41063-c44c-40ce-b131-a06898bbc13a',
|
|
'nip' => '44442222',
|
|
'position' => 'Administrator',
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
],
|
|
]);
|
|
}
|
|
}
|