Laravel model Trailing Data when save the model

前端 未结 6 831
青春惊慌失措
青春惊慌失措 2021-01-02 02:00

I have some code like this

    $editStuState = StuAtt::where(\'studentId\' , \'=\' , $id)->first();
    $editStuState -> leave +=1;
    $editStuState -         


        
6条回答
  •  长情又很酷
    2021-01-02 02:29

    I have the same problem, but I changed the column name to creation_date , the problem solved.

提交回复
热议问题