This commit is contained in:
afiq
2021-12-22 04:32:30 +08:00
parent 73ffd64ae1
commit ba84bace3c
4 changed files with 118 additions and 7 deletions
+34
View File
@@ -0,0 +1,34 @@
<?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 = [];
}