Laxtour

Untitled

Jan 9th, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.13 KB | None | 0 0
  1. @extends('template.index')
  2.  
  3. @section('contenido')
  4. <div class="col-md-12">
  5. <h1>Productos vendidos</h1>
  6. </div>
  7. <div class="table-cart col-md-12">
  8. <div class="table-responsive">
  9. @if(!$cart)
  10. <div class="no-cart col-md-12 text-center">
  11. <h3>No hay productos en el carrito</h3>
  12. </div>
  13. @else
  14. <p class="text-center">
  15. <a href="{{route('cart-trash')}}" class="btn btn-danger">
  16. Vaciar carro <i class="fa fa-trash"></i>
  17. </a>
  18. </p>
  19. <table class="table table-striped table-hover table-bordered">
  20. <thead>
  21. <tr>
  22. <th>Imagen</th>
  23. <th>Producto</th>
  24. <th>Precio</th>
  25. <th>Cantidad</th>
  26. <th>Subtotal</th>
  27. <th>Quitar</th>
  28. </tr>
  29. </thead>
  30. <tbody>
  31.  
  32. @foreach($cart as $item)
  33. <tr>
  34. <td><img src="{{$item->image}}" alt="{{$item->name}}" title="{{$item->name}}" ></td>
  35. <td>{{$item->name}}</td>
  36. <td>$ {{number_format($item->price,2)}}</td>
  37. <td>
  38. <input id="product_{{$item->id}}" type="number" min="1" max="100" value="{{$item->quantity}}">
  39. <a href="" class="btn btn-warning btn-update-item" data-href="{{route('cart-update',$item->slug)}}" data-id="{{$item->id}}">
  40. <i class="fa fa-refresh"></i>
  41. </a>
  42. </td>
  43. <td>$ {{number_format($item->price * $item->quantity,2)}}</td>
  44. <td>
  45. <a href="{{route('cart-delete',$item->slug)}}" class="btn btn-danger">
  46. <i class="fa fa-remove"></i>
  47. </a>
  48. </td>
  49. </tr>
  50. @endforeach
  51. @endif
  52. </tbody>
  53. </table>
  54. </div>
  55. <hr>
  56. <div class="btn-cart text-center">
  57. <p>
  58. <a href="{{route('home')}}" class="btn btn-primary">
  59. <i class="fa fa-chevron-circle-left"></i> Seguir vendiendo
  60. </a>
  61. <a href="#" class="btn btn-primary">
  62. Continuar <i class="fa fa-chevron-circle-right"></i>
  63. </a>
  64. </p>
  65. </div>
  66. </div>
  67.  
  68.  
  69.  
  70.  
  71. @endsection
  72. @section('js')
  73. <script src="{{asset('js/cart-update.js')}}"></script>
  74. @endsection
Add Comment
Please, Sign In to add comment