order_gizi/app/Models/Kalori.php
2025-07-31 15:42:12 +07:00

24 lines
505 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Kalori extends Model
{
protected $connection = 'dbOrderGizi';
protected $table = 'public.kalori';
public $timestamps = false;
protected $primaryKey = "kalori_id";
protected $fillable =[
'entry_at',
'pegawai_id_entry',
'pegawai_nama_entry',
'modified_at',
'pegawai_id_modified',
'pegawai_nama_modified',
'statusenabled',
'nilai_kalori'
];
}