Upgrading To 4.1.26 From <= 4.1.25 Laravel not working -


i have followed instructions on laravel's upgrade page, firstly adding nullable text column user's table (within migration file), labelled remember_token. add 3 functions user's model.

when run composer update, brings abstract class error - referencing user's model, within page visit. why this? have followed instructions incorrectly?

i need run composer update remove plugin, update!

maybe column have added not nullable? in case, migration file looked like:

schema::table('users', function(blueprint $table) {     $table->string('remember_token', 100)->nullable(); }); 

and i've added this:

public function getremembertoken() {     return $this->remember_token; }  public function setremembertoken($value) {     $this->remember_token = $value; }  public function getremembertokenname() {     return 'remember_token'; } 

to users model , works great.


Comments

Popular posts from this blog

javascript - jquery or ashx not working -

opencv - DataType<cv::detail::deriv_type>::depth what is it used for -

python 3.x - Mapping specific letters onto a list of words -