branch aku je deh jangan kacau saya nak makan kacang

This commit is contained in:
hafifierahman
2021-01-05 09:54:32 +08:00
parent ed3e8643e1
commit 4fdf2e17b8
11 changed files with 542 additions and 30 deletions
+38
View File
@@ -0,0 +1,38 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Mohon extends Model
{
protected $table = 'mohon';
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'TARIKH',
'NORUJUKAN',
'SIRI',
'KOMEN',
'lastdategadai',
'bilGad',
'jumPinj',
'jenisTebus',
'teller',
'pelulus',
'peloperasi',
'masalulus'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}