@extends('page_layout') @section('section')
| Item Name | Qty | Price | Total | Action |
|---|---|---|---|---|
| {{ $item['name'] }} | {{ $item['quantity'] }} | ${{ number_format($item['price'], 2) }} | ${{ number_format($total, 2) }} | |
| Grand Total | ${{ number_format($grandTotal, 2) }} | |||
Your cart is empty.
@endif| Image | Product | Qty | Price | Subtotal |
|---|---|---|---|---|
| {{ $item->product->title }} | {{ $item->quantity }} | ₹{{ $item->product->price }} | ₹{{ $item->product->price * $item->quantity }} |
Your cart is empty.
@endif {{-- Future Gateway --}}