Column not found: 1054 Unknown column '0' in 'field list' - Laravel - I don't have a 0 column anywhere in my code

后端 未结 4 1582
悲&欢浪女
悲&欢浪女 2021-02-13 11:24

I\'m getting this weird error:

SQLSTATE[42S22]: Column not found: 1054 Unknown column \'0\' in \'field list\' (SQL: update forum_threads set

4条回答
  •  佛祖请我去吃肉
    2021-02-13 11:35

    As I mentioned in the comment section, change your function to this:

    public function scopeLock($query)
    {
        return $query->where('locked', 0)->update(['locked' => 1]);
    }
    

    Note the changes in the update method.

提交回复
热议问题