2019-11-16 10:21:14 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Imports\Common;
|
|
|
|
|
2021-06-29 12:22:20 +03:00
|
|
|
use App\Abstracts\ImportMultipleSheets;
|
2020-12-21 11:24:38 +03:00
|
|
|
use App\Imports\Common\Sheets\Items as Base;
|
|
|
|
use App\Imports\Common\Sheets\ItemTaxes;
|
2019-11-16 10:21:14 +03:00
|
|
|
|
2021-06-29 12:22:20 +03:00
|
|
|
class Items extends ImportMultipleSheets
|
2019-11-16 10:21:14 +03:00
|
|
|
{
|
2020-12-21 11:24:38 +03:00
|
|
|
public function sheets(): array
|
2019-11-16 10:21:14 +03:00
|
|
|
{
|
2020-12-21 11:24:38 +03:00
|
|
|
return [
|
|
|
|
'items' => new Base(),
|
|
|
|
'item_taxes' => new ItemTaxes(),
|
|
|
|
];
|
2019-11-16 10:21:14 +03:00
|
|
|
}
|
|
|
|
}
|