add dashboard, fix get data scraping, fix table

This commit is contained in:
arifal
2025-01-24 01:58:06 +07:00
parent 4de7067487
commit 5f93a18f60
53 changed files with 2671 additions and 58 deletions

View File

@@ -0,0 +1,24 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class PbgTaskPrasarana extends Model
{
use HasFactory;
protected $table = "pbg_task_prasarana";
protected $fillable = [
'pbg_task_uid',
'prasarana_id',
'prasarana_type',
'building_type',
'total',
'quantity',
'unit',
'index_prasarana',
];
}