invoice items so far getting better

This commit is contained in:
2024-11-10 15:32:54 +05:00
parent c1af5e1b39
commit 607a916cff
7 changed files with 115 additions and 10 deletions

View File

@@ -33,16 +33,49 @@ class HomeController extends Controller
items: [
new InvoiceItem(
name: 'Programma üpjünçiligini işläp taýýarlamak barada',
name: 'Programma üpjünçiligini hyzmat etmek barada',
unit: 'ay',
quantity: 1,
unit_price: 25000,
quantity: 2,
unit_price: 100000,
vat: null,
excludingVat: null,
vat_excluded: null,
vat_percentage: null,
vat_tmt: null,
total: 25000,
total: 200000,
),
new InvoiceItem(
name: 'Programma üpjünçiligini hyzmat etmek barada',
unit: 'ay',
quantity: 2,
unit_price: 100000,
vat: null,
vat_excluded: null,
vat_percentage: null,
vat_tmt: null,
total: 200000,
),
new InvoiceItem(
name: 'Programma üpjünçiligini hyzmat etmek barada',
unit: 'ay',
quantity: 2,
unit_price: 100000,
vat: null,
vat_excluded: null,
vat_percentage: null,
vat_tmt: null,
total: 200000,
),
new InvoiceItem(
name: 'Programma üpjünçiligini işäň taýýarlamak barada',
unit: 'ay',
quantity: 2,
unit_price: 100000,
vat: null,
vat_excluded: null,
vat_percentage: null,
vat_tmt: null,
total: 200000,
)
]
))
->handle()