16 lines
283 B
PHP
16 lines
283 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
class PriceDataHistoryLt extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = "price_data_history_lt";
|
|
protected $guarded = [];
|
|
|
|
}
|