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

File "PaystackAndMollie.php"

Full Path: /var/www/laravel_filter/app/Models/PaystackAndMollie.php
File size: 440 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class PaystackAndMollie extends Model
{
    use HasFactory;

    public function paystack_currency(){
        return $this->belongsTo(MultiCurrency::class, 'paystack_currency_id');
    }

    public function mollie_currency(){
        return $this->belongsTo(MultiCurrency::class, 'mollie_currency_id');
    }


}