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

File "OrderRequest.php"

Full Path: /home/sibcards/public_html/app/Models/OrderRequest.php
File size: 763 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Models;

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

class OrderRequest extends Model
{
    use HasFactory;
    protected $fillable = [
        'order_id',
        'nfc_card_id',
        'business_id',
        'quantity',
        'price',
        'card_logo',
        'designation',
        'phoneno',
        'email',
        'shipping_address',
        'user_id',
        'status',
        'created_by'
    ];
    
    

    public static function OrderStatus()
    {
        $statusOption = [
            'in progress' => 'In Progress',
            'shipped' => 'Shipped',
            'delivered' => 'Delivered',
        ];
        return $statusOption;
    }

}