17 lines
289 B
PHP
17 lines
289 B
PHP
<?php
|
|
|
|
namespace App\Imports;
|
|
|
|
use Illuminate\Support\Collection;
|
|
use Maatwebsite\Excel\Concerns\ToCollection;
|
|
use Maatwebsite\Excel\Concerns\WithMultipleSheets;
|
|
|
|
class HarvestDataImport implements WithMultipleSheets
|
|
{
|
|
|
|
public function sheets(): array
|
|
{
|
|
return [];
|
|
}
|
|
}
|