Привет, ребята, я использую Laravel 4.2 и столкнулся с проблемой при попытке экспортировать csv.
Вот пример моего кода
$data[] = [
'Column1' => "John",
'Column2' => "===",
];
Excel::create('data', function($excel) use($data){
$excel->sheet('sheet1', function($sheet) use($data){
$sheet->fromArray($data);
});
})->export('csv');
Ответ об ошибке:
"error_details": "sheet1!B2 -> Formula Error: An unexpected error occured in file /var/www/html/job_progress/api/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell.php on line number 291"