Files
api_arrahn/app/LelTebus.php
T
2021-09-04 22:45:47 +08:00

34 lines
598 B
PHP

<?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 = [];
}