I'm doing an insert into a MySql table that contains multiple date fields.
I left the current_timestamp value in the created_at column of the table.
If I do an INSERT now, it's inserting: 12:29:00. That is, three more hours.
And if I do the INSERT in this column manually by Laravel, like this:
$model->created_at = date('Y-m-d H:i:s')
He also inserts three hours more.
How do I fix this?