I have problem with laravel view is not found by route function I did composer dumpautoload but no use ArticleController.php
Create the index.blade.php file in the views folder, that should be all
Just in the controller call
return View('index');
without
::make
Use this on your cmd then run your project.
php artisan config:cache php artisan route:cache php artisan controller:cache php artisan optimize:clear
I had the same error. I created a directory under views direcotry named users
and created an index.blade.php
file in it. When calling this file you should write users.index
to indicate your path. Or just create index.blade.php
file under views. hope this will help someone who gets the same problem