Memperbaiki redirect ke halaman otorisasi penawaran ketika status nay bukan tender

This commit is contained in:
2024-12-06 14:35:07 +07:00
parent d486cd735a
commit 5b892d6d7d
28 changed files with 965 additions and 360 deletions

View File

@@ -12,7 +12,7 @@ class HubunganPenghuniJaminanSeeder extends Seeder
*/
public function run(): void
{
HubunganPenghuniJaminan::insert([
$hubungan_penghuni_jaminan = [
[
'name' => 'Suami/Istri',
],
@@ -28,6 +28,10 @@ class HubunganPenghuniJaminanSeeder extends Seeder
[
'name' => 'Kontrak/Kost'
]
]);
];
foreach ($hubungan_penghuni_jaminan as $hpj) {
HubunganPenghuniJaminan::insert($hpj);
}
}
}