V
Size: a a a
V
K
SP
V
SP
SS
SS
VY
K
SP
K
SS
SS
V
K
SP
ЕК
ЕК
static function htmlToExcel($html, $filename = "report.xls") {
header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=$filename");
return response($html)
->header("Content-type", "application/vnd.ms-excel")
->header("Content-Disposition", "attachment; filename=$filename");
}
ЕК
ЕК