tambahan hapus ansuran
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
<?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 = [];
|
||||
}
|
||||
Reference in New Issue
Block a user