I want to display the order details form database. I store cart data into database using serialize method. When i want to dispaly data i can not properly show it. only can print order object. And there give that a error.That is
(1/1) FatalErrorException syntax error, unexpected 'endforeach' (T_ENDFOREACH) in 9ad30ab1db6ca668d8a75c428e65858dc800d045.php line 27 .
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1>User Profile</h1>
<hr>
<h2>My Oders</h2>
@foreach($orders as $order)
<div class="panel panel-default">
<div class="panel-body">
<ul class="list-group">
@forecah($order->cart->items as $product)
<li class="list-group-item">
<span class="badge">
</span>
|
Units
</li>
@endforeach
</ul>
</div>
<div class="panel-footer">
<strong>Total Price : </strong>
</div>
</div>
@endforeach
</div>
</div>
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire