@extends('front.layouts.main')
@section('content')
MY CART
@if(count($data['data']) > 0)
SUB TOTAL :
{{number_format($data['totalPrice'])}}
DELIVERY FEE :
{{number_format($data['deliveryFee'])}}
VAT {{config('constants.VAT_PERCENTAGE')}}% :
{{number_format($data['totalPrice'] - round(($data['totalPrice']/1.18)))}}
TOTAL :
{{number_format($data['totalPrice'])}}
CART IS EMPTY!