[Vuejs]-Laravel VUE JS binding select data to another element

1👍

Change its value from product.product_id to product.product_qty. It will work hopefully


<option v-for="product in products" :key="product.product_id" :value="product.product_qty">{{product.product_name}}</option>

Leave a comment