Uploaded From CV. Swandhana Server

This commit is contained in:
Duidev Software House
2025-02-25 01:50:20 +00:00
committed by dwi_vendor
parent ffddee22df
commit 27064a1f7e
15185 changed files with 2328844 additions and 0 deletions

No files matched your search

+28
View File
@@ -0,0 +1,28 @@
<?php
namespace Database\Seeders;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;
class JawabanSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
DB::table('jawaban')->insert([
['jawaban' => 'Mikrobiologi']
]);
DB::table('subjawaban')->insert([
['kategori' => '1', 'judul' => 'CCI', 'subjawaban' => '', 'kesimpulan' => ''],
['kategori' => '1', 'judul' => 'Kultur', 'subjawaban' => '', 'kesimpulan' => ''],
['kategori' => '1', 'judul' => 'Pewarna Langsung', 'subjawaban' => '', 'kesimpulan' => ''],
['kategori' => '1', 'judul' => 'TBC', 'subjawaban' => '', 'kesimpulan' => ''],
['kategori' => '1', 'judul' => 'Viral Load', 'subjawaban' => '', 'kesimpulan' => ''],
['kategori' => '1', 'judul' => 'PCR COVID', 'subjawaban' => '', 'kesimpulan' => '']
]);
}
}