modify filter calculation

This commit is contained in:
Ludovic CANDELLIER
2022-05-09 22:33:18 +02:00
parent 8c898bf63b
commit 3370b8061c
5 changed files with 43 additions and 27 deletions

View File

@@ -59,8 +59,6 @@
<script>
function refreshBasketTop() {
$.get("{{ route('Shop.Basket.getSummary') }}", function(response) {
console.log("refreshBasketTop()");
console.log(response);
$('#count-basket').html(response.data.quantity);
$('#total-basket').html(response.data.total);
});