我正在尝试为用户显示产品列表,令我惊讶的是,这并没有在页面上显示它,但是,它被插入到数据库中,可能是什么错误?
public function index()
{
$listProducts = Product::where('user_id', '=', Auth::user()->id)->orderBy('productname', 'desc');
return view('product.index')
->with('products', $listProducts);
}
刀片文件:
@if(Auth::check())
@foreach($products as $product)
<TR><TD>{!! $product->companyname !!}</TD><TD>{!! $product->productname !!}</TR>
@endforeach
@endif
答案 0 :(得分:3)
问题是您需要返回数组中的数据:
return view('product.index', ['products' => $listProducts]);
除了改变这个:
$listProducts = Product::where('user_id', '=', Auth::user()->id)->orderBy('productname', 'desc');
对此:
$listProducts = Product::where('user_id', '=', Auth::user()->id)->orderBy('productname', 'desc')->get();