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