34 lines
578 B
PHP
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 = [];
|
|
} |