filePath = $filePath; } /** * Execute the job. */ public function handle(): void { ini_set('memory_limit', '-1'); // ✅ 增加記憶體限制 Excel::import(new ArtistDataImport, $this->filePath); // 匯入完成後刪除檔案 if (Storage::exists($this->filePath)) { Storage::delete($this->filePath); } } }