38 lines
766 B
PHP
38 lines
766 B
PHP
<?php
|
|
|
|
namespace App\Imports;
|
|
|
|
use App\Models\Dataset\DatasetTable16;
|
|
use Maatwebsite\Excel\Concerns\ToModel;
|
|
use Maatwebsite\Excel\Concerns\WithStartRow;
|
|
|
|
class DatasetTable16Import implements ToModel,WithStartRow
|
|
{
|
|
/**
|
|
* @param array $row
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Model|null
|
|
*/
|
|
protected $datasetId;
|
|
protected $userId;
|
|
|
|
public function __construct($datasetId,$userId)
|
|
{
|
|
$this->datasetId = $datasetId;
|
|
$this->userId = $userId;
|
|
}
|
|
|
|
public function startRow(): int
|
|
{
|
|
return 6;
|
|
}
|
|
|
|
public function model(array $row)
|
|
{
|
|
return new DatasetTable16([
|
|
'dataset_id' => $this->datasetId,
|
|
'created_by' => $this->userId,
|
|
]);
|
|
}
|
|
}
|