This commit is contained in:
afiq
2021-02-16 14:57:29 +08:00
parent 626fab209c
commit 957f6830d7
8 changed files with 99 additions and 16 deletions
+26
View File
@@ -0,0 +1,26 @@
<?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 = [];
}