File Manager

Path: /home/liffinac1/domains/impactxtmtrading.com/public_html/app/Models/

Viewing File: MarketPrice.php

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class MarketPrice extends Model
{
    protected $fillable = [
        'instrument_id',
        'open',
        'high',
        'low',
        'close',
        'volume',
        'timestamp',
        'interval',
        'source',
    ];

    public function instrument()
    {
        return $this->belongsTo(Instrument::class);
    }
}