dikplhd/app/Imports/DatasetTable26Import.php

70 lines
2.0 KiB
PHP

<?php
namespace App\Imports;
use App\Models\Dataset\DatasetTable26;
use Maatwebsite\Excel\Concerns\ToModel;
use Maatwebsite\Excel\Concerns\WithStartRow;
class DatasetTable26Import 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
) {
return null; // baris kosong dilewati
}
return new DatasetTable26([
'dataset_id' => $this->datasetId,
'created_by' => $this->userId,
'lokasi_pemantauan' => $row[0],
'latitude' => $row[1],
'longitude' => $row[2],
'waktu_pemantauan' => $row[3],
'ph' => $row[4],
'dhl' => $row[5],
'so4' => $row[6],
'no3' => $row[7],
'cr' => $row[8],
'nh4' => $row[9],
'na' => $row[10],
'ca2' => $row[11],
'mg2' => $row[12],
]);
}
}