@extends('layouts.app') @section('styles') @endsection @section('content')
×

Share Your Cart

Share this link with others to show them your selected items:

This link will expire in 7 days

@if(isset($isSharedCart) && $isSharedCart) Shared Shopping Cart @else Your Shopping Cart @endif

@if(isset($isSharedCart) && $isSharedCart) Someone shared these items with you @else Review your selected items @endif

@if(count($cartItems) > 0)

Cart Items ({{ count($cartItems) }})

@foreach($cartItems as $item)
{{ $item['name'] }}

{{ $item['name'] }}

PKR {{ number_format($item['price'], 0) }} @if(isset($item['sale_price']) && ($item['sale_price'] < $item['original_price'])) PKR {{ number_format($item['original_price'], 0) }} @endif
@if(!isset($isSharedCart) || !$isSharedCart) @endif
PKR {{ number_format($item['price'] * $item['quantity'], 0) }}
@endforeach

Order Summary

Subtotal: PKR {{ number_format($total, 0) }}
Shipping: FREE

Total: PKR {{ number_format($total, 0) }}
@if(!isset($isSharedCart) || !$isSharedCart)
Share your cart with friends and family
@else @endif
@else

Your cart is empty

Looks like you haven't added any items to your cart yet.

Start Shopping
@endif
@endsection @section('scripts') @endsection