30 lines
833 B
PHP
30 lines
833 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class LogJualDetil extends Model
|
|
{
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'Kode', 'KodeJual', 'KodeBarang', 'Satuan', 'HPP', 'Jumlah', 'Harga', 'Jasa', 'DiscPros','Discount', 'KodeInduk','HargaRetur','JumlahRetur','JasaRetur','StStock','StRacik','Signa','Keterangan','PenG','PenF','ResepAsli','IdDetailResep','Frek','JFrek','Hari','SP','SS','SM','SSR','NamaRacikan','WK'
|
|
];
|
|
|
|
/**
|
|
* The attributes excluded from the model's JSON form.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $hidden = [];
|
|
protected $table = 'TTLogJualD';
|
|
protected $primaryKey = 'Kode';
|
|
protected $keyType = 'string';
|
|
public $incrementing = false;
|
|
public $timestamps = false;
|
|
} |