We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1113f55 + 8c21bea commit 9b3f801Copy full SHA for 9b3f801
src/resources/views/crud/fields/datetime.blade.php
@@ -9,7 +9,7 @@
9
10
$timestamp = strtotime(old_empty_or_null($field['name'], '') ?? $field['value'] ?? $field['default'] ?? '');
11
12
-$value = $timestamp ? strftime('%Y-%m-%dT%H:%M:%S', $timestamp) : '';
+$value = $timestamp ? date('Y-m-d\TH:i:s', $timestamp) : '';
13
@endphp
14
15
@include('crud::fields.inc.wrapper_start')
0 commit comments