I am using Laravel Framework 6.16.0
and I am having in my migration the following field:
$table->timestamp('trx_timestamp', 0)->nullable($value = true);
Over my API I get the field the following way:
Currently, I am saving it plainly without converting it. However, this does result in 0000-00-00 00:00:00
values in my db.
Any suggestions what I am doing wrong?