dikplhd/app/Imports/DatasetTable54Import.php

42 lines
986 B
PHP

<?php
namespace App\Imports;
use App\Models\Dataset\DatasetTable54;
use Maatwebsite\Excel\Concerns\ToModel;
use Maatwebsite\Excel\Concerns\WithStartRow;
class DatasetTable54Import 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 DatasetTable54([
'dataset_id' => $this->datasetId,
'created_by' => $this->userId,
'nama' => $row[0],
'nama_penghargaan' => $row[1],
'pemberi_penghargaan' => $row[2],
'tahun_penghargaan' => $row[3],
]);
}
}