Guest User

Untitled

a guest
Jul 17th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <table class="table" cellpadding="0" cellspacing="0" border="0">
  2. <thead>
  3. <tr>
  4. <th>PRODUTO</th>
  5. <th>QTD.</th>
  6. <th>PREÇO</th>
  7. </tr>
  8. </thead>
  9. <tbody>
  10. @foreach ($cart->items as $item)
  11. <tr>
  12. <td>{{ $item->product->name }}</td>
  13. <td>{{ $item->quantity }}</td>
  14. <td>{{ $item->price }}</td>
  15. </tr>
  16. @endforeach
  17. </tbody>
  18. </table>
Add Comment
Please, Sign In to add comment