Laravel unexpected error “class user contains 3 abstract methods…”

前端 未结 8 656
野趣味
野趣味 2021-01-30 01:56

While programming my Authentication app on Laravel, I came across to an error I\'ve never seen before. I\'ve been brainstorming for almost an hour for the cause of this problem

8条回答
  •  既然无缘
    2021-01-30 02:36

    "First, add a new, nullable remember_token of VARCHAR(100), TEXT, or equivalent to your users table. which is put like this $table->text('remember_token', 100)->nullable(); into the table then php artisan migrate. and update to your Elq model too.

提交回复
热议问题