first(); $XII = Kelas::where('kelas', 'XII')->first(); // Cek apakah kelas tersedia if (!$XIII || !$XII) { throw new \Exception("Kelas belum tersedia. Pastikan KelasSeeder sudah jalan."); } DB::table('siswas')->insert([ 'nama' => 'Syifa', 'kelas_id' => 2, //ini nama kolom baru 'umur' => 19, 'absen' => 34, 'created_at' => now(), 'updated_at' => now(), ]); } }