weatherData = $data; } /** * @return \Illuminate\Support\Collection */ public function array(): array { return $this->weatherData; } public function headings() : array { return array_keys($this->weatherData[0]); } public function getCsvSettings(): array { return [ 'delimiter' => ',', 'enclosure' => '', ]; } }