JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "MercadoPagoPayment.php"

Full Path: /var/www/laravel_filter/Modules/PaymentGateway/Entities/MercadoPagoPayment.php
File size: 539 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Modules\PaymentGateway\Entities;

use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use App\Models\MultiCurrency;

class MercadoPagoPayment extends Model
{
    use HasFactory;

    protected $fillable = [];

    protected static function newFactory()
    {
        return \Modules\PaymentGateway\Database\factories\MercadoPagoPaymentFactory::new();
    }

    public function currency()
    {
        return $this->belongsTo(MultiCurrency::class, 'currency_id', 'id');
    }
}