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

28 lines
702 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class DenoPendSer extends Model
{
protected $table = 'denopendser';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = ['no','kodlaluan','amaun','tarikh','masa','update','jenis','recno','kodcaw','bd1','bd5','bd10','bd20','bd50','bd100','txtring1','txtring5','txtring10','txtring20',
'txtring50','txtring100','txtring1000','txtsen1','txtsen5','txtsen10','txtsen20','txtsen50'];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
public $timestamps = false;
}