24 lines
534 B
PHP
24 lines
534 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class KlasifikasiMenu extends Model
|
|
{
|
|
protected $connection = 'dbOrderGizi';
|
|
protected $table = 'public.kategori_diet';
|
|
public $timestamps = false;
|
|
protected $primaryKey = "kategori_diet_id";
|
|
protected $fillable =[
|
|
'entry_at',
|
|
'pegawai_id_entry',
|
|
'pegawai_nama_entry',
|
|
'modified_at',
|
|
'pegawai_id_modified',
|
|
'pegawai_nama_modified',
|
|
'statusenabled',
|
|
'nama_kategori_diet'
|
|
];
|
|
}
|