Hi, I need a help. Sorry for my bad English!
I want to add backdate function to the add form which is insert certain date to the database. (Creating backdate post)
But when I check the database the NULL value inserted.
<p>Problem solved
in the voyager\src\Http\Controllers\Controller.php
add after case 'timestamp':</p>
<p>
if ($request->isMethod('POST')) {
$content = gmdate('Y-m-d H:i:s', strtotime($request->input($row->field)));
}
</p>