芝麻web文件管理V1.00
编辑当前文件:/home/forge/stage.herta-bht.smartcon-survey.com/app/Exports/NetPromoterExport.php
data = $data['data']; $this->country = $country; $this->statement = $statement; } public function array(): array { $rows = []; foreach ($this->data['datasets'] as $dataset) { $row = []; $row[] = $this->country->name; $row[] = $dataset['label']; if ($this->statement) { $row[] = $this->statement->text; } foreach ($dataset['data'] as $waveValue) { $row[] = (string) $waveValue['y'] ?? null; $row[] = (string) $waveValue['n'] ?? null; } $rows[] = $row; } return $rows; } public function headings(): array { foreach ($this->data['labels'] as $i => $label) { $mergedArray[] = $label.' (in %)'; $mergedArray[] = $label.' (n)'; } if ($this->statement) { return array_merge(['Country', 'Brand', 'Statement'], $mergedArray); } return array_merge(['Country', 'Brand'], $mergedArray); } }