This commit is contained in:
wayanrivan
2026-07-01 13:48:50 +07:00
parent f44b798e5b
commit 2098c30fc8

View File

@ -25,7 +25,7 @@ class ReportsController extends Controller
$q = "SELECT id, nopol1 from t_vehicles WHERE dlt is null order by nopol1";
$vehicletype = DB::table('t_vehicles_cats')->where('is_active', 1)->get();
$listNopol = DB::select($q);
$listpool = DB::table('t_conf_pools')->where('is_active')->get();
$listpool = DB::table('t_conf_pool')->where('dlt', null)->get();
$data = [
'listNopol' => $listNopol,