Files
api_arrahn/app/WTDDraft.php
T
2021-12-22 04:32:30 +08:00

34 lines
578 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class WTDDraft extends Model
{
protected $table = 'wtd_draft';
public $timestamps = false;
protected $connection = 'mysql7';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'id',
'nokp',
'norujukan',
'kodcaw',
't_jual',
't_gadai',
't_lelong'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}