I try to find the source of this error i looked everywhere and i even used the vsc finder to search for the typo... do you know where this is located
Asked
Active
Viewed 33 times
-3
-
Does this answer your question? [Base table or view not found: 1146 Table Laravel 5](https://stackoverflow.com/questions/30159257/base-table-or-view-not-found-1146-table-laravel-5) – John Lobo Apr 11 '22 at 11:55
1 Answers
0
You should provide additional information, this isn't enough information to provide a solution.
I'm guessing Laravel isn't able to find your table.
Guessing you're using a model, provide the model with a tablename. In your model, add:
protected $table = 'your_tablename';
If this does not solve your problem, please provide additional information so I can update my answer.
Also see: SO, how to ask

geertjanknapen
- 1,159
- 8
- 23