Open asalkey opened 9 years ago
If you run ->toSql() you get following query
select `contractor_category`.`contractor_type` from `vendor` inner join `contractor_category_vendor` on `contractor_category_vendor`.`vendor_id` = `vendor`.`id` inner join `contractor_category` on `contractor_category`.`id` = `contractor_category_vendor`.`contractor_category_id`
Does running that in phpmyadmin show the results you expect?
I am not able to get all the results only the last one here is what I have in the controller
The vendor is associated to many categories and it's only pulling the last one not all of them.