我正在学习Laravel,我试图创建一个页面,其中Laravel从DB填充表格,但是我有一个错误(我在this PDF file(页面67-69)中做了所有事情)
错误讯息:
ListProductsController.php中的FatalThrowableError第16行:解析 错误:语法错误,意外的文件结束,期待功能 (T_FUNCTION)
ListProductsController.php
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use DB;
use App\Http\Requests;
use App\Http\Controllers\Controller;
class ListProductsController extends Controller
{
public function inventory(){
$inventory = DB::select('select * from inventory');
return view('inventory',['inventory'=>$inventory]);
}
我的路线:
Route::get('inventory','ListProductsController@inventory');
出了什么问题?
答案 0 :(得分:3)
您忘了在最后添加}
:
class ListProductsController extends Controller
{
public function inventory()
{
$inventory = DB::select('select * from inventory');
return view('inventory',['inventory' => $inventory]);
}
}