芝麻web文件管理V1.00
编辑当前文件:/home/forge/stage.herta-bht.smartcon-survey.com/app/Exports/KPIFunnelExport.php
data = $data['data']; $this->quarter = $data['quarterYear']; $this->country = $country; $this->model = $model; } public function array(): array { $rows = []; foreach ($this->data as $row) { foreach ($row as $key => $value) { $row[$key] = (string) $value; } $rows[] = [ 'Country' => $this->country->name, 'Brand' => $this->model->name, 'Quarter' => $this->quarter, ...$row, ]; } return $rows; } public function headings(): array { return ['Country', 'Brand', 'Quarter', 'KPI Funnel', 'n', '%', 'Conversion', 'Delta']; } }