Memperbarui UI/UX

This commit is contained in:
2026-06-07 23:32:06 +07:00
parent f7479770e6
commit 76a8782409
47 changed files with 4378 additions and 685 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
require 'vendor/autoload.php';
$app = require_once 'bootstrap/app.php';
$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);
$kernel->bootstrap();
foreach (\App\Models\TempatIbadah::all() as $t) {
if (!$t->kode_lapor) {
$t->update(['kode_lapor' => \Illuminate\Support\Str::random(10)]);
echo "Updated {$t->id} with {$t->kode_lapor}\n";
}
}