I have problem with laravel view is not found by route function I did composer dumpautoload but no use ArticleController.php
In my case I was calling View::make('User/index'), where in fact my view was in user directory and it was called index.blade.php. Ergo after I changed it to View@make('user.index') all started working.
View::make('User/index')
View@make('user.index')