*/ protected $fillable = [ 'stock_attribute_id', 'name', 'language_id', ]; /** * Get the attribute that this value belongs to. */ public function attribute(): BelongsTo { return $this->belongsTo(StockAttributes::class, 'stock_attribute_id'); } }