我正面临一个关于我最近的项目的问题,我试图通过数据库中的表单保存一些日期(这是按预期工作)但当我试图从我的数据库中获取该数据时它没有显示在视图中甚至没有脚本但是相同的代码在另一个视图中工作的任何东西(好像代码甚至不存在)。
控制器代码:
public function index()
{
$products = Product::all();
return view('product.index',compact('products'));
}
刀片代码:
@include('includes.header')
<div id="page-wrapper">
<div class="row">
<div class="col-lg-12" style="margin: 30px" >
<table class="table table-bordered col-md-12 table-sm">
<thead>
<tr>
<th>ID</th>
<th>Image</th>
<th>Company Name</th>
<th>Title</th>
<th>Price</th>
<th>Status</th>
<th>Description</th>
<th>Created At</th>
<th>Updated At</th>
</tr>
</thead>
<tbody>
@if($products)
@foreach($products as $product)
<tr>
<td>{{$product->id}}</td>
<td><img src="" alt="">{{$product->photo ? $product->photo->file : 'no item photo'}}</td>
<td>{{$product->cname}}</td>
<td>{{$product->title}}</td>
<td>{{$product->price}}</td>
<td>{{$product->status == 1 ? "Active" : "Not Active"}}</td>
<td>{{$product->description}}</td>
<td>{{$product->created_at->diffForHumans()}}</td>
<td>{{$product->updated_at->diffForHumans()}}</td>
</tr>
@endforeach
@endif
</tbody>
</table>
</div>
</div>
</div>
<!-- /#page-wrapper -->
@include('includes.footer')