Home  >  Q&A  >  body text

laravel prohibits automatic update of update_at field

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

世界只因有你世界只因有你2736 days ago2695

reply all(2)I'll reply

  • 世界只因有你

    世界只因有你2017-05-16 16:51:57

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

    public function getUpdatedAtColumn() {
        return null;
    }

    reply
    0
  • 大家讲道理

    大家讲道理2017-05-16 16:51:57

    Add
    public $timestamps = false;

    to model

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

    reply
    0
  • Cancelreply