35 lines
581 B
PHP
35 lines
581 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Mohonid extends Model
|
|
{
|
|
protected $table = 'mohonid';
|
|
public $timestamps = false;
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'recno',
|
|
'tarikh',
|
|
'onlineid',
|
|
'mohon',
|
|
'norujukan',
|
|
'id',
|
|
'katalaluan',
|
|
'benar',
|
|
'teller'
|
|
];
|
|
|
|
/**
|
|
* The attributes excluded from the model's JSON form.
|
|
*
|
|
* @var array
|
|
*/
|
|
// protected $hidden = [];
|
|
} |