40 lines
754 B
PHP
40 lines
754 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class TransaksiGadai extends Model
|
|
{
|
|
protected $table = 'transaksi_gadai';
|
|
public $timestamps = true;
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'kodcaw',
|
|
'norujukan',
|
|
'percentpinj',
|
|
'bakipjm',
|
|
'tempoh',
|
|
't_update',
|
|
'bakihargajualan',
|
|
'tempohbayar',
|
|
'lelong_tawarruq',
|
|
'margin_semasa',
|
|
'tunggakanujrah',
|
|
'tunggakanonepercent',
|
|
'transaction_id',
|
|
'transaksiupah_id',
|
|
'softDelete'
|
|
];
|
|
|
|
/**
|
|
* The attributes excluded from the model's JSON form.
|
|
*
|
|
* @var array
|
|
*/
|
|
// protected $hidden = [];
|
|
} |