24 lines
364 B
PHP
24 lines
364 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ModalOnline extends Model
|
|
{
|
|
protected $table = 'modal_online';
|
|
|
|
protected $fillable = [
|
|
'tarikh',
|
|
'kodcaw',
|
|
'had',
|
|
'digunakan',
|
|
'baki',
|
|
'tambah',
|
|
'kurang',
|
|
'ditutup',
|
|
'ditutup_oleh',
|
|
'ditutup_at',
|
|
];
|
|
}
|