Hi,
I have integrated koolreport to Laravel. Now I am trying to export a report to Excel using the code: We have one array with settings and $report = new GeneralReport(["ds"=> $wsettings]); $report->run()->exportToExcel()->toBrowser("myreport.xlsx");
But instead of generating the report show nothing. When i going on Network tab from Chrome, on specified request i see status 200, on response header i have "Content-Disposition : attachment; filename ='myreport.xlsx' ", "Content-Lenght:6117" ,"Content-Type: application/vnd.ms-excel" and "Content-Transfer-Encoding: binary". On response tab i have binary chars.
On "GET" method working, i have problems on "POST".
No download starting.
Can anybody help me to resolve the issue?