Files
api_arrahn/app/HargaEmas.php
hafifierahman 7ae83966f7 change recent
2021-01-12 11:46:12 +08:00

36 lines
514 B
PHP

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