@extends('layouts.website') @section('title', 'Shopping Cart') @section('content')
@include('website.checkout.stepsbar')
@if($cartItems->count() > 0)
@foreach($cartItems as $cartItem) @endforeach
Remove Image Product(s) Price Quantity Total

{{$cartItem->name}}

@php $product = App\Product::find($cartItem->id); @endphp @if($cartItem->options->size != Null)

Size: {{$cartItem->options->size}}

@endif @if($cartItem->options->color != Null)

Color: {{$cartItem->options->color}}

@endif Edit
৳ {{$cartItem->price}}
{{$cartItem->qty}} @if($product->stock <= 5)

Only {{$product->stock}} {{$product->stock == 1 ? 'item' : 'items'}} in stock

@endif
৳ {{$cartItem->total}}
  • Sub-Total:Tk {{Cart::subtotal()}}
  • Shipping:Tk 50
  • Total:Tk {{Cart::total() + 50}}
Continue to Checkout
@else

There are no items in this cart

Please add some item in your shopping cart.

Retuen Shop
@endif
@endsection @push('js') @endpush