Files
api_arrahn/app/Panjar.php
T
2021-01-05 09:54:32 +08:00

39 lines
655 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Panjar extends Model
{
protected $table = 'panjar';
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'recno',
'tarikh',
'deskripsi',
'bayaran',
'nota',
'tag',
'kategori',
'nama',
'id',
'bakiperubatan',
'nobaucer',
'nobil',
'tuntutoleh'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}