dikplhd/app/Imports/DatasetTable29Import.php

38 lines
766 B
PHP

<?php
namespace App\Imports;
use App\Models\Dataset\DatasetTable29;
use Maatwebsite\Excel\Concerns\ToModel;
use Maatwebsite\Excel\Concerns\WithStartRow;
class DatasetTable29Import 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 DatasetTable29([
'dataset_id' => $this->datasetId,
'created_by' => $this->userId,
]);
}
}