我刚刚开始玩laravel。首先,这是我遇到过的最好的框架。现在这是我的问题。我试图从路线指出 - >控制器 - >查看
//This is my Controller file
public function index()
{
return View::make('pages', array('name' => 'Taylor'));
}
// This is my Routes File
Route::get('/', 'pagesController@index');
View file => pages.blade.php
这是我得到的错误。
FatalErrorException in pagesController.php line 19:
Class 'App\Http\Controllers\View' not found
答案 0 :(得分:1)
从错误中看,问题是在当前命名空间中找不到View
类。
尝试这种方式:
//use the View class from the global namespace
return \View::make('pages', array('name' => 'Taylor'));
或在控制器脚本的开头导入View
类:
use View;