DateTimePicker: Error - Invalid datetime format
Hi,
I have column "payment_due_at" , $table->dateTime('payment_due_at')->nullable();
My form:
When submitting I get:
SQLSTATE[22007]: Invalid datetime format: 1292 Incorrect datetime value: '1690542420' for column 'payment_due_at' at row 1
I have also tried:
Same error
Any suggestions, please?
Thank you
3 Replies
Solution
Do you have a
datetime
cast on the model?Correct, thanks... I just add the cast, it works now.