Files
api_arrahn/app/HargaEmas.php
T
2020-10-20 10:58:34 +08:00

26 lines
405 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 = [
// ];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}