我正在尝试将时间列导出为Excel时间格式,但是由于某些原因,它不起作用。
$array_tytan_info_ntt= TYTAN_INFO_NTT::whereDate('fec_startdate', '>=', $variable)
->selectRaw(" TIME(fec_startdate) as 'STARTDATE1' ")
->get();
$excel_tytan_info_ntt = json_decode( json_encode($array_tytan_info_ntt), true);
Excel::create('ntts_mes_'.Carbon::now()->toDateTimeString(), function($excel) use($excel_tytan_info_ntt) {
$excel->sheet('nttsmes', function($sheet) use($excel_tytan_info_ntt) {
$sheet->setColumnFormat(array(
'A' => 'hh:mm:ss',));
$sheet->fromArray($excel_tytan_info_ntt);
});
})->export('xls');
如您所见,以字符串形式返回。
预期行为
非常感谢您的帮助。问候。