Seeing the latest changes of the User Model and User Authentication in the latest versions of Laravel. Which fields should be the table users to works properly? Id, email, username, password, and what other fields will be necessary? I refer to the remember tokens and others properties.
Thanks in advanced.
As is specified on the official upgrade page (http://laravel.com/docs/upgrade#upgrade-4.1.26) you'll need the remember_token column on the user table now.
You also need the shown functions in the user model.
This makes the mandatory fields on the User table the following:
Regards!
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community