@if(isset($cart_contents)) @foreach($cart_contents as $cart) {{ $cart->name }} {{ $cart->options->product_code }} {{ $cart->options->batch_no ?? '' }} {{ $cart->options->product_unit_name }} @if ($modules['allow_product_discount'] ?? false) @endif {{ $cart->options->vat_percent ?? 0 }}% {{ currency_format(($cart->price * $cart->qty) * ($cart->options->vat_percent ?? 0) / 100, currency: business_currency()) }}
{{ currency_format(($cart->price - ($cart->options->discount ?? 0)) * $cart->qty, currency: business_currency()) }} @endforeach @endif