Fixed wrong conversion to integer for line item quantity.

This commit is contained in:
2026-08-24 10:15:06 +02:00
parent bf9cc56a9a
commit 2b0b8575bf
+1 -1
View File
@@ -22,7 +22,7 @@ class LineItem extends Model
protected $casts = [
'is_section' => 'boolean',
'quantity' => 'integer',
'quantity' => 'float',
'price' => 'decimal:2',
];