Shopping Cart - Empty My Cart

ITEMS ({{ count($cart_items) }}) PRICE QUANTITY
@forelse ($cart_items as $item)
{{ Str::limit($item['title'], 50) }}
{{ $item['variant_attributes_summary'] }}
PKR {{ number_format($item['unit_amount'] * $item['quantity'],2) }}

@empty

No items available in cart.

@endforelse

Shipping & Billing

{{--
--}} {{-- --}} {{--
--}}
{{--
--}} {{-- --}} {{--
--}}
{{-- Loader during Livewire request --}}
Loading cities...
{{-- Dropdown when cities are ready --}} @if(!empty($courier_cities)) @endif

@foreach(\App\Models\PaymentMethod::where('status', \App\Models\PaymentMethod::STATUS_ACTIVE)->get() as $method)
@endforeach

Order Summary

Subtotal ({{ count($cart_items) }} items) PKR {{ number_format($sub_total,2) }}

Shipping Charges PKR {{$delivery_charges}}

Packaging Charges PKR {{$packaging_charges}}


Total PKR {{ number_format($grand_total,2) }}


COD Amount

{{--

--}} {{-- Your Profit is:--}} {{-- --}} {{-- {{ number_format($profit) }}--}} {{-- --}} {{-- --}} {{--

--}}

Tax Amount: PKR {{ number_format($total_tax_amount,2) }}

Your Profit is: PKR {{ number_format($profit,2) }}


Instructions


You cannot place order if profit is negative.