230723181353581862 내용이 230723181353582000 으로 바뀌면서 엑셀로 만들어지는 신기한일이 생겼다.
config/excel.php 에서
'value_binder' => [
'default' => Maatwebsite\Excel\DefaultValueBinder::class,
],
이부분을
'value_binder' => [
'default' => PhpOffice\PhpSpreadsheet\Cell\StringValueBinder::class,
],
이렇게 바꾸면 해결된다.
config/excel.php 에서
'value_binder' => [
'default' => Maatwebsite\Excel\DefaultValueBinder::class,
],
이부분을
'value_binder' => [
'default' => PhpOffice\PhpSpreadsheet\Cell\StringValueBinder::class,
],
이렇게 바꾸면 해결된다.