Laravel - 代码中的错误,我看不到

时间:2016-03-07 06:58:37

标签: php laravel

我是Laravel的新手。我创建了一个数据库并将一些记录(卡片)放入数据库中。到目前为止,这很好。

我有一个带有以下代码的CardsController:

namespace App\Http\Controllers;

use DB;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;

class CardsController extends Controller
{
    public function index() 
    {
        $cards = DB::table('cards')->get();
        return view ('cards.index', compact('cards'));
    }
}

当我运行它时,我收到此错误:

  

b3313739fb5d5f08e44d77a431f809ec37961a7b.php中的FatalErrorException   第11行:语法错误,意外':',期待'('

     

in b3313739fb5d5f08e44d77a431f809ec37961a7b.php第11行

     

第11行是类CardsController扩展Controller

我该如何解决这个问题?

0 个答案:

没有答案