HOME


Mini Shell 1.0
Login Page - Texind
png


Welcome to Texind Admin Portal! 馃憢

DIR: /home/u358511784/domains/texindcolors.com/public_html/app/Models/
Upload File :
Current File : /home/u358511784/domains/texindcolors.com/public_html/app/Models/Order.php
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Order extends Model
{
        
    protected $primaryKey = 'id';
    protected $table = 'order_master';
    protected $fillable = [
          
       'id',
       'user_id',
       'name',
       'company_name',
       'address1',
       'address2',
       'city',
       'state',
       'country',
       'contact_no',
       'status','image_name'
        		
    ];

    public function OrderDetails() {
        return $this->hasmany('App\Models\OrderItem', 'order_id','id');
    }

    
}