This happens when Laravel doesn't find a view file in your application. Make sure you have a file named: index.php
or index.blade.php
under your app/views
directory.
Note that Laravel will do the following when calling View::make
:
View::make('index')
Laravel will look for the file: app/views/index.php
.View::make('index.foo')
Laravel will look for the file: app/views/index/foo.php
.The file can have any of those two extensions: .php
or .blade.php
.