我在laravel有一个新手问题。我正在尝试查询数据库。我已经修改了配置以包含我的数据库的必要凭据。现在,当我尝试像这样查询我的数据库时:
<?php
/*
|--------------------------------------------------------------------------
| Application Routes
|--------------------------------------------------------------------------
|
| Here is where you can register all of the routes for an application.
| It's a breeze. Simply tell Laravel the URIs it should respond to
| and give it the Closure to execute when that URI is requested.
|
*/
Route::get('/', function()
{
$topPages = DB::table('webmasters') -> get();
return $topPages;
});
我得到:致命错误:
在/.../.../.../dashboard/app/routes.php中找不到“路线”类 第13行。
我已经按照laracast视频访问了数据库中的信件,有人可以告诉我这里我错过了什么或做错了吗? 提前谢谢。
答案 0 :(得分:1)
可能的解决方案:
composer update
)