dikplhd/app/Imports/DatasetTable44BImport.php

72 lines
2.0 KiB
PHP

<?php
namespace App\Imports;
use App\Models\Dataset\DatasetTable44B;
use Maatwebsite\Excel\Concerns\ToModel;
use Maatwebsite\Excel\Concerns\WithStartRow;
class DatasetTable44BImport 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)
{
// cek kalau row kosong jangan insert
if (
$row[0] === null &&
$row[1] === null &&
$row[2] === null &&
$row[3] === null &&
$row[4] === null &&
$row[5] === null &&
$row[6] === null &&
$row[7] === null &&
$row[8] === null &&
$row[9] === null &&
$row[10] === null &&
$row[11] === null &&
$row[12] === null &&
$row[13] === null
) {
return null; // baris kosong dilewati
}
return new DatasetTable44B([
'dataset_id' => $this->datasetId,
'created_by' => $this->userId,
'lokasi' => $row[0],
'jumlah_kejadian' => $row[1],
'terdampak' => $row[2],
'kecamatan' => $row[3],
'kelurahan' => $row[4],
'rt' => $row[5],
'rw' => $row[6],
'kk' => $row[7],
'jiwa' => $row[8],
'pengungsi' => $row[9],
'lokasi_pengungsian' => $row[10],
'korban_jiwa_luka' => $row[11],
'keterangan' => $row[12],
'kerugian' => $row[13],
]);
}
}