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
375 B
25 lines
375 B
<?php |
|
|
|
|
|
namespace App\Imports; |
|
|
|
|
|
use Maatwebsite\Excel\Concerns\WithMultipleSheets; |
|
|
|
class BedDataExcel implements WithMultipleSheets |
|
{ |
|
private $round; |
|
|
|
public function __construct(int $round) |
|
{ |
|
$this->round = $round; |
|
} |
|
|
|
public function sheets(): array |
|
{ |
|
return [ |
|
new BedFirstSheetImport($this->round), |
|
]; |
|
|
|
} |
|
}
|
|
|