@extends('website.layouts.app') @section('content') @include('website.layouts.title_section')
@foreach($cartItems as $index => $item) @endforeach
Product Quantity Price Total Remove
@if($item->cowCareItem->image) {{ $item->cowCareItem->title }} @else {{ $item->cowCareItem->title }} @endif {{ $item->cowCareItem->title }}
{{ number_format($item->cowCareItem->price, 2) }} {{ $subtotal }}
Cart Summary
Subtotal: {{ number_format($total, 2) }}
Shipping: Free

Total: {{ number_format($total, 2) }}
@endsection