Memperbaiki redirect ke halaman otorisasi penawaran ketika status nay bukan tender

This commit is contained in:
2024-12-06 14:35:07 +07:00
committed by Daeng Deni Mardaeni
parent bc8e618bda
commit a52c4a1bbd
28 changed files with 965 additions and 360 deletions

View File

@@ -12,7 +12,7 @@ class ArahMataAnginSeeder extends Seeder
*/
public function run(): void
{
ArahMataAngin::insert([
$arah_mata_angin = [
[
'name' => 'Utara',
],
@@ -37,6 +37,10 @@ class ArahMataAnginSeeder extends Seeder
[
'name' => 'Barat Laut',
],
]);
];
foreach ($arah_mata_angin as $arah) {
ArahMataAngin::insert($arah);
}
}
}