Skip to content

Commit

Permalink
Fix inc, dec
Browse files Browse the repository at this point in the history
  • Loading branch information
cjonstrup committed Jan 10, 2021
1 parent a8bad3c commit 49f8f77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/views/basket.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
@endforeach
@endif
</td>
<td><a href="{{route('ecommerce.basket.item.inc',[$index])}}">-</a></td>
<td><a href="{{route('ecommerce.basket.item.inc',[$index])}}">+</a></td>
<td><input class="form-control" type="text" name="quantity[{{$index}}]" value="{{$item->quantity}}" style="width:90px"/></td>
<td><a href="{{route('ecommerce.basket.item.dec',[$index])}}">+</a></td>
<td><a href="{{route('ecommerce.basket.item.dec',[$index])}}">-</a></td>
<td>{{$item->single(false)}}</td>
<td>{{$item->tax}}</td>
<td>{{$item->total(false)}}</td>
Expand Down

0 comments on commit 49f8f77

Please sign in to comment.