*/ protected $fillable = [ 'incoming_id', 'name', 'article_number', 'description', 'amount', 'discount', 'tax', 'price', 'total', ]; /** * Get the invoice the item belongs to. */ public function incoming(): BelongsTo { return $this->belongsTo(Incoming::class); } }