fixing styles

This commit is contained in:
ludo
2024-01-07 20:42:37 +01:00
parent 25b8fc40c5
commit c053221662
39 changed files with 149 additions and 326 deletions

View File

@@ -68,7 +68,9 @@ class BasketController extends Controller
public function getBasketTotal($deliveryId = false, $deliveryTypeId = false)
{
$data['basket'] = Baskets::getBasketTotal($deliveryId, $deliveryTypeId);
$data = [
'basket' => Baskets::getBasketTotal($deliveryId, $deliveryTypeId),
];
return view('Shop.Baskets.partials.basketTotal', $data);
}