Files
api_arrahn/app/Mohonid.php
T
2021-10-02 09:55:22 +08:00

39 lines
659 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Mohonid extends Model
{
protected $table = 'mohonid';
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'recno',
'tarikh',
'onlineid',
'mohon',
'norujukan',
'id',
'katalaluan',
'benar',
'pinjaman',
'nilaimarhun',
'berat',
'margin',
'teller'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}