Laravel – Polymorphic many-to-many relationship model property doesn't return collection but ->get() does
I have two models Product and ProductType which both have a relationship with the Usp model. I have set up the models like this. class Product extends Model { use HasFactory, SoftDeletes; protected $guarded = []; public function usps(): MorphToMany…