Does the .env have the proper credentials for your database ?
If so did you manually remove or edit migrations ? You may have to truncate your migrations table on the forge server and re run php artisan migrate but be sure to clear all caches after you truncate
Try to add this to User.php model class
protected $table = "users";
or add table index to app/config/auth.php:
'providers' => [
'users' => [
....
....
'table' => 'users', // **This was missing**
],
],
Thanks, folks--TorchSK's last suggestion was what I tried first and it worked! I did tweak my migration files--didn't actually use them for development--so I likely have work to do there, too, Cameron. Awesome resource, this forum, I hope I learn enough to contribute soon. Thanks again!
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community