If this helps at all, I was getting the error:
Illuminate \ Database \ QueryException
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'test.users' doesn't exist (SQL: select * from users where users.deleted_at is null and username = 'test' limit 1)
until I set 'prefix' => 'test.' in my config/database mysql settings. Found that odd because I didn't need that setting to run migrations or seed the database. (the database is called test and it definitely has a table called users with one record in it)
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.