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

File "Expresscheckout.php"

Full Path: /home/mipedido/web/mipedido.app/public_html/app/Models/Expresscheckout.php
File size: 426 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 Expresscheckout extends Model
{
    use HasFactory;
    protected $table = 'express_checkout';
    protected $fillable = [
        'quantity','url','store_id','created_by'
    ];
    public function product(){
        return $this->hasOne(\App\Models\Product::class,'id','product_id');
    }
}