it could be cache ... i do experience a lot of cache problems since L5 ... did you flushed your cache ? & update your composer
Feb 17, 2015
5
Level 5
View [home] not found.
UPDATE: When I run php artisan serve, I can view the home page view fine (i.e. on http://localhost:8000). But on homestead, no dice. What gives?
I ran composer update and now I'm running into an issue. I'm getting this error when I'm trying to load my home view:
InvalidArgumentException in FileViewFinder.php line 140:
View [home] not found.
Yes, files exists in my directory (resources/views, etc.). Name is home.blade.php.
My controller:
<?php namespace Hulahoop\Http\Controllers;
use Hulahoop\Http\Requests;
use Hulahoop\Http\Controllers\Controller;
use Illuminate\Http\Request;
class HomeController extends Controller {
/**
* Display a listing of the resource.
*
* @return Response
*/
public function index()
{
return view('home');
}
}
Route:
Route::get('/', 'HomeController@index');
This was working fine and it's very basic function. What happened? Running on local homestead FYI.
Please or to participate in this conversation.