39 lines
655 B
PHP
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 = [];
|
|
} |