41 lines
700 B
PHP
41 lines
700 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',
|
|
'bilgad',
|
|
'jumpinj',
|
|
'jenistebus',
|
|
'teller',
|
|
'pelulus',
|
|
'peloperasi',
|
|
'masalulus',
|
|
'margin',
|
|
'nilaimarhun',
|
|
'berat',
|
|
'status'
|
|
];
|
|
|
|
/**
|
|
* The attributes excluded from the model's JSON form.
|
|
*
|
|
* @var array
|
|
*/
|
|
// protected $hidden = [];
|
|
} |