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) { return null; // baris kosong dilewati } return new DatasetTable27([ 'dataset_id' => $this->datasetId, 'created_by' => $this->userId, 'nama_sungai' => $row[1], 'lokasi' => $row[2], 'panjang' => $row[3], 'lebar_permukaan' => $row[4], 'lebar_dasar' => $row[5], 'kedalaman' => $row[6], 'debit_maks' => $row[7], 'debit_min' => $row[8], ]); } }