mirror of
https://github.com/rekywhyd/WebGIS_PengentasanKemiskinan.git
synced 2026-07-07 01:43:07 +00:00
14 lines
385 B
PHP
14 lines
385 B
PHP
<?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";
|
|
}
|
|
}
|