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

File "CustomDomainRequest.php"

Full Path: /home/mipedido/web/mipedido.app/public_html/app/Models/CustomDomainRequest.php
File size: 623 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 CustomDomainRequest extends Model
{
    use HasFactory;
    protected $fillable = [
        'user_id',
        'store_id',
        'custom_domain',
        'status',
    ];

    public function user()
    {
        return $this->hasOne('App\Models\User', 'id', 'user_id');
    }
    
    public function store()
    {
        return $this->hasOne('App\Models\Store', 'id', 'store_id');
    }

    public static $statues = [
        'Pending',
        'Approved',
        'Rejected'
    ];
}