@extends('layouts.user') @section('page-title', 'Shopping Cart') @section('content')
Your cart is empty. Browse products to add items.
@else| Product | SKU | Price | Qty | Stock | Subtotal | |
|---|---|---|---|---|---|---|
| {{ $item->product->name }} | {{ $item->product->sku }} | ₹{{ number_format($row['price'],2) }} |
@if ($row['below_minimum']) Min {{ $item->product->min_order_quantity }} @endif
@if ($row['exceeds_stock'])Only {{ $item->product->stock_quantity }} left @endif
|
{{ $item->product->stock_quantity }} | ₹{{ number_format($row['subtotal'],2) }} |
Resolve quantity issues above before checking out.
@endif