38 lines
649 B
PHP
38 lines
649 B
PHP
<?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 = [];
|
|
} |