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