keluar lelong

This commit is contained in:
afiq
2021-09-04 22:45:47 +08:00
parent bba1d6908f
commit b0251cb4a1
3 changed files with 86 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class LelTebus extends Model
{
protected $table = 'lelong_tebus';
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'tarikh',
'teller',
'norujukan',
'batch_no',
'nilai_marhun',
'pinjaman',
'upah',
'jbg',
'jenis_tebus',
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}