36 lines
514 B
PHP
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;
|
|
|
|
} |