Files
2024-04-19 14:04:41 +07:00

30 lines
988 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class LogJual extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'Kode', 'NoJual', 'TglJual', 'KodeDepo', 'KodeJamin', 'KodeDokter', 'StJual', 'KodeTL', 'NoRMPx','NamaPx', 'UmurPx','KetUmur','AlamatPx','Aktif','IdPetugas','TglRetur','AktifRetur','IdPetugasRetur','NoMinta','StMinta','AktifMinta','IdPetugasMinta','Klaim','TglKlaim','StCetak','StCetakR','Dx','NoTT','TotJual','TotRetur','StResep','idResep','NoBilling','TglLahir','idbl_transaksi','StBilling','StLunasBilling','idbl_transaksi_ret','KodeJurnal','KodeJurnalR'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
protected $hidden = [];
protected $table = 'TTLogJual';
protected $primaryKey = 'Kode';
protected $keyType = 'string';
public $incrementing = false;
public $timestamps = false;
}