Skip to content

Commit

Permalink
Remove icon
Browse files Browse the repository at this point in the history
  • Loading branch information
cjonstrup committed Jan 10, 2021
1 parent 00a024a commit a0a5f3d
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])}}"><i class="fas fa-plus"></i></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])}}"><i class="fas fa-minus"></i></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 a0a5f3d

Please sign in to comment.