我是 Laravel 框架的新手。当我使用我创建的控制器运行页面时显示错误。路由可以检测到控制器及其视图,但它不会显示。
路线:
错误:
产品控制器索引():
public function index()
{
$products = Product::latest()->paginate(5);
return view('products.index',compact('products'))
->with('i', (request()->input('page', 1) - 1) * 5);
}
FFIVE