missing sample import files

This commit is contained in:
denisdulici
2020-01-20 00:21:37 +03:00
parent 9574f154a7
commit de1a090ff6
28 changed files with 97 additions and 56 deletions

View File

@@ -35,6 +35,7 @@ class InvoiceItems implements FromCollection, ShouldAutoSize, WithHeadings, With
$model->invoice_id,
$model->item_id,
$model->name,
$model->quantity,
$model->price,
$model->total,
$model->tax,
@@ -47,6 +48,7 @@ class InvoiceItems implements FromCollection, ShouldAutoSize, WithHeadings, With
'invoice_id',
'item_id',
'name',
'quantity',
'price',
'total',
'tax',
@@ -57,4 +59,4 @@ class InvoiceItems implements FromCollection, ShouldAutoSize, WithHeadings, With
{
return 'invoice_items';
}
}
}