fix(items): added unit name after quantity in the pdf templates

This commit is contained in:
Sebastian Cretu
2021-03-03 17:09:05 +01:00
parent 02a2db4417
commit f9d6e8b0cc
5 changed files with 44 additions and 4 deletions

View File

@ -22,7 +22,8 @@ class EstimateItem extends Model
'discount_val',
'tax',
'total',
'discount'
'discount',
'unit_name',
];
protected $casts = [

View File

@ -25,7 +25,8 @@ class InvoiceItem extends Model
'discount_val',
'total',
'tax',
'discount'
'discount',
'unit_name',
];
protected $casts = [