@extends('layouts.new-layout') @section('title', 'Cart') @section('content') @include('partials.parallaxSlider', ['title' => 'Cart'])

Cart

Total Items: {{ count($cartItems)}}
@if($cartItems->count() > 0)
@csrf
@endif
@if($total != 0)
  • Subtotal: {{$total}}
  • {{--
  • Service Fee / Shipping Cost:
  • --}}

    Total: {{$total}}

  • Go to checkout
@endif
@if($relatedItems->isNotEmpty())
See Our

Related Product

@endif
@endsection