海工商新版后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

25 lines
369 B

<?php
namespace App\Imports;
use Maatwebsite\Excel\Concerns\WithMultipleSheets;
class DataExcel implements WithMultipleSheets
{
private $round;
public function __construct(int $round)
{
$this->round = $round;
}
public function sheets(): array
{
return [
new FirstSheetImport($this->round),
];
}
}