data = $data; } /** * 获取数据集合 */ public function collection() { return collect($this->data); } /** * 设置表头 */ public function headings(): array { // 第一行作为表头 return $this->data[0] ?? []; } }