@extends('layouts.website')
@section('title', 'Shopping Cart')
@section('content')
Size: {{$cartItem->options->size}} Color: {{$cartItem->options->color}} Only {{$product->stock}} {{$product->stock == 1 ? 'item' : 'items'}} in stock
@foreach($cartItems as $cartItem)
Remove
Image
Product(s)
Price
Quantity
Total
@endforeach
{{$cartItem->name}}
@php
$product = App\Product::find($cartItem->id);
@endphp
@if($cartItem->options->size != Null)
৳ {{$cartItem->price}}
৳ {{$cartItem->total}}
Continue to Checkout