I have a Product model and a Attribute model.
Products have Attributes.
Problem is I cant use Attributes as a member of a Product class that extends eloquent as eloquent uses this already. Is there a way around this?
class Product extends Model
{
protected $attributes;
// ...
}