Files
api_arrahn/app/Mohonid.php
T
hafifierahman 7ae83966f7 change recent
2021-01-12 11:46:12 +08:00

35 lines
581 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',
'teller'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}