Files
alliance-services/app/Models/Moon/OrePrice.php
2026-03-14 20:59:41 -05:00

32 lines
477 B
PHP

<?php
namespace App\Models\Moon;
use Illuminate\Database\Eloquent\Model;
class OrePrice extends Model
{
// Table Name
protected $table = 'ore_prices';
//Primary Key
public $primaryKey = 'id';
//Timestamps
public $timestamps = false;
/**
* Fillable array
*
* @var array
*/
protected $fillable = [
'Name',
'ItemId',
'BatchPrice',
'UnitPrice',
'm3Price',
'Time',
];
}