36 lines
565 B
PHP
36 lines
565 B
PHP
|
|
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class BayaranHutang extends Model
|
|
{
|
|
protected $table = 'bayaran_hutang';
|
|
// public $timestamps = false;
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
|
|
protected $fillable = [
|
|
'serialno',
|
|
'tarikh',
|
|
'bayaran',
|
|
'ID',
|
|
'IDPelulus',
|
|
'nota',
|
|
'rechutang'
|
|
];
|
|
|
|
/**
|
|
* The attributes excluded from the model's JSON form.
|
|
*
|
|
* @var array
|
|
*/
|
|
// protected $hidden = [];
|
|
}
|