'int', 'type_id' => 'int', 'attribute_id' => 'int' ]; protected $fillable = [ 'product_id', 'type_id', 'attribute_id' ]; public function attribute() { return $this->belongsTo(Attribute::class); } public function attribute_type() { return $this->belongsTo(AttributeType::class); } public function product() { return $this->belongsTo(Product::class); } }