hasOne('Sales\Order\Models\Status'); } /** * The internalStatus that belong to the order. */ public function internalStatus(){ return $this->hasOne('Sales\Order\Models\Status'); } /** * The quote that belong to the order. */ public function quote(){ return $this->hasOne('Sales\Order\Models\Quote'); } }