DEV Community

Discussion on: Laravel 8 CRUD App, A simple guide

Collapse
 
kingsconsult profile image
Kingsconsult

add this

use App\Http\Controllers\ProjectController;

to the top of your web route file

and also you did not add the model for Project, the model should be

php artisan make:controller ProjectController --resource --model=Project

Collapse
 
voland700 profile image
Max Volcov

Thank you! This problem was solved.