Files
api_arrahn/app/HistoryEmasSandaran.php
2021-02-16 14:57:29 +08:00

26 lines
491 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class HistoryEmasSandaran extends Model
{
protected $table = 'history_emas_sandaran';
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'karat','t_efektif','m_efektif','harga'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}