add dashboard, fix get data scraping, fix table
This commit is contained in:
24
app/Models/PbgTaskIndexIntegrations.php
Normal file
24
app/Models/PbgTaskIndexIntegrations.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class PbgTaskIndexIntegrations extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $table = "pbg_task_index_integrations";
|
||||
|
||||
protected $fillable = [
|
||||
'pbg_task_uid',
|
||||
'indeks_fungsi_bangunan',
|
||||
'indeks_parameter_kompleksitas',
|
||||
'indeks_parameter_permanensi',
|
||||
'indeks_parameter_ketinggian',
|
||||
'faktor_kepemilikan',
|
||||
'indeks_terintegrasi',
|
||||
'total',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user