DEV Community

Discussion on: Laravel 8 CRUD App, A simple guide

Collapse
 
abel4545 profile image
Abel4545

ErrorException
Use of undefined constant ‘projects’ - assumed '‘projects’' (this will throw an Error in a future version of PHP)

Collapse
 
nmossa profile image
nmossa

change
Route::resource('projects', ProjectController::class);
to
Route::resource("projects", ProjectController::class);
double quota. It should work with you. I got the same problem. Very helpful

Collapse
 
martydotcom profile image
martydotcom

Thank you, worked for me

Collapse
 
dswwood profile image
dswwood

The problem is that the code you copied has back-quotes rather than 'forward-quotes'.