laravel prohibits automatic update of update_at field
世界只因有你
世界只因有你 2017-05-16 16:49:57
0
2
2703

Every time the save method is called, laravel always automatically updates the update_at field. How to disable automatic updates

世界只因有你
世界只因有你

reply all(2)
世界只因有你

If you need to keep created_at, just disable created_at
But try overriding this method

public function getUpdatedAtColumn() {
    return null;
}
大家讲道理

Add
public $timestamps = false;

to model

https://laravel-china.org/doc...

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template