@extends('sales.layout.guest-layout') @section('main')
@if ($cart && $cart->salescartitems->count() > 0) @foreach ($cart->salescartitems as $key => $item) @endforeach @else @endif
S.No. Image Product Quantity Unit Price Sale Price Total Sale Price Action
{{ $key + 1 }} @if (count($item?->saleproduct->images)) @else @endif {{ $item->saleproduct->name }}
+
${{ number_format($item->saleproduct->price, 2) }} ${{ number_format($item->saleproduct->price, 2) }} ${{ number_format($item->total_amount, 2) }}

Order Summary

Total Amount ${{ number_format($cart->total_amount ?? 0, 2) }}
No. of Products {{ $cart->items_count ?? 0 }}
HST Amount ${{ number_format($cart->tax ?? 0, 2) }}

Grand Total

${{ number_format($cart->grand_total ?? 0, 2) }}

@endsection