Alicia Wilkerson

Results 5 comments of Alicia Wilkerson

I am seeing this as well... specifically when eager loading multi level relationships .ie: ```Inventory::with('models.brands')->get();``` I can fetch the ``$inventory->models[0]->brand`` without the eager loading so it's working. I am using...

> Please provide a Laravel project to reproduce your issues I'm attempting to create a simple app that reflects this issue. However its not doing it with an sqlite database....

This was not a problem in 1.1.16 but **is** a problem in 1.1.17onward I have reverted my package to only use 1.1.16 and it removes the problem. Below is the...

Verified it does not work with the 2.0.0 branch as well.

Changing the query to the below works: ``` public function product_code() { return $this->belongsTo(ProductCode::class,['PCID'],['PCID']); } ``` Correction this does not work in 2.0.0 so assuming it's not working in the...