datasetId = $datasetId; $this->userId = $userId; } public function startRow(): int { return 6; } public function model(array $row) { // dd($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) { return null; // baris kosong dilewati } // dd($row[1]); return new DatasetTable25([ 'dataset_id' => $this->datasetId, 'created_by' => $this->userId, 'lokasi' => $row[1], 'mata_air' => $row[2], 'ledeng_pam' => $row[3], 'sumur_bor_pompa' => $row[4], 'sumur_tak_terlindung' => $row[5], 'sungai' => $row[6], 'terlindung_air' => $row[7], 'air_kemasan' => $row[8], 'lainnya' => $row[9], ]); } }