Files
2021-01-11 17:59:46 +08:00

39 lines
605 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class InOutMar extends Model
{
protected $table = 'inoutmar';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'tarikh',
'masa',
'norujukan',
'nm',
'kpd',
'drp',
'bln',
'thn',
'tag',
'jenistebus',
'namateller'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
public $timestamps = false;
}