Advertisement
bngoding

blade

Jun 21st, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.42 KB | None | 0 0
  1. <div class="row" id="dw">
  2. <div class="col-md-8">
  3. @card
  4. @slot('title')
  5.  
  6. @endslot
  7.  
  8. <div class="row">
  9. <div class="col-md-4">
  10. <!-- SUBMIT DIJALANKAN KETIKA TOMBOL DITEKAN -->
  11. <form action="{{route('order.checkout')}}" @submit.prevent="addToCart" method="POST">
  12. @csrf
  13. <div class="form-group">
  14. <label for="">product</label>
  15. <select @change="mounted()" name="product_id" id="product_id"
  16. v-model="cart.product_id"
  17. class="form-control" required width="100%">
  18. <option value="">Pilih</option>
  19. @foreach ($products as $product)
  20. <option value="{{ $product->id }}">{{ $product->code }} - {{ $product->title }}</option>
  21. @endforeach
  22. </select>
  23. </div>
  24. <div class="form-group">
  25. <label for="">Qty</label>
  26. <input type="number" name="qty"
  27. v-model="cart.qty"
  28. id="qty" value="1"
  29. min="1" class="form-control">
  30. </div>
  31. <div class="form-group">
  32. <button class="btn btn-primary btn-sm"
  33. :disabled="submitCart"
  34. >
  35. <i class="fa fa-shopping-cart"></i> {{ $product->submitCart ? 'Loading...':'Ke Keranjang' }}
  36. </button>
  37. </div>
  38. </form>
  39. </div>
  40.  
  41. <!-- MENAMPILKAN DETAIL PRODUCT -->
  42. <div class="col-md-5">
  43. <h4>Detail product</h4>
  44. <div v-if="product.title">
  45. <table class="table table-stripped">
  46. <tr>
  47. <th>Kode</th>
  48. <td>:</td>
  49.  
  50. <td>{{ $product->code }}</td>
  51. </tr>
  52. <tr>
  53. <th width="3%">product</th>
  54. <td width="2%">:</td>
  55. <td>{{ $product->title }}</td>
  56. </tr>
  57. <tr>
  58. <th>Harga</th>
  59. <td>:</td>
  60. <td>Rp. @convert($product->price) </td>
  61. </tr>
  62. </table>
  63. </div>
  64. </div>
  65.  
  66. <!-- MENAMPILKAN IMAGE DARI PRODUCT -->
  67. <div class="col-md-3" v-if="product.photo">
  68. <img src="/uploads/product/{{$product->photo}}"
  69. height="150px"
  70. width="150px"
  71. :alt="product.title">
  72. </div>
  73. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement