You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Great package! Very big help for my project. I got an issue with adding supplier by ID,
This line return $this->suppliers()->find($id); under InventoryTrait, it returns NULL. I am quite new to traits. As per description it is the belongs to many relationship. Am I correct?
I changed the code to return Supplier::find($id);, it worked fine. Am missing something?
thank you
The text was updated successfully, but these errors were encountered:
Hi Steve,
Great package! Very big help for my project. I got an issue with adding supplier by ID,
This line
return $this->suppliers()->find($id);
under InventoryTrait, it returns NULL. I am quite new to traits. As per description it is the belongs to many relationship. Am I correct?I changed the code to
return Supplier::find($id);
, it worked fine. Am missing something?thank you
The text was updated successfully, but these errors were encountered: