*/ protected $fillable = [ 'attribute_id', 'value', ]; /** * Get the attribute associated with the attribute default value. * * @return BelongsTo */ public function attribute() { return $this->belongsTo(Attribute::class); } }