27 lines
639 B
PHP
27 lines
639 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class StudentSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*/
|
|
public function run(): void
|
|
{
|
|
DB::table('students')->insert([
|
|
[
|
|
'id' => \Ramsey\Uuid\Uuid::uuid4()->toString(),
|
|
'user_id' => '69b41063-c44c-40ce-b131-a06898bbc13b',
|
|
'department_id' => '60b41063-c44c-40ce-b131-a06898bbc13c',
|
|
'nim' => 'E41202420',
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
],
|
|
]);
|
|
}
|
|
}
|