32 lines
561 B
PHP
32 lines
561 B
PHP
<?php
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class WTDSimulasi extends Model
|
|
{
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $connection = 'mysql7';
|
|
protected $table = 'wtd_simulasi';
|
|
|
|
protected $fillable = [
|
|
'bulan',
|
|
'tahun',
|
|
'kodcaw',
|
|
'jumlah_sag',
|
|
'pembiayaan',
|
|
'baki',
|
|
'simulasi',
|
|
];
|
|
|
|
/**
|
|
* The attributes excluded from the model's JSON form.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $hidden = [];
|
|
} |