| DIR: /home/u358511784/domains/texindcolors.com/public_html/app/Models/ |
| 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');
}
}
|