@extends('master_layout') @section('title') {{ $seo_setting->seo_title }} @endsection @section('new-layout')

{{ __('translate.My Cart') }}

@php $subtotal = 0; @endphp @foreach($carts as $cart) @php $itemTotal = $cart->product ? $cart->product->finalPrice * $cart->quantity : 0; $subtotal += $itemTotal; @endphp @endforeach
{{ __('translate.Product') }} {{ __('translate.Price') }} {{ __('translate.Quantity') }} {{ __('translate.Subtotal') }}
{!! $cart->product->price_display !!}
{{ currency($itemTotal) }}
{{ __('translate.Cart Totals') }}

{{ __('translate.Subtotal') }}:

{{ currency($subtotal) }}

{{ __('translate.Total') }}:

{{ currency($subtotal) }}

@if($carts->isNotEmpty()) {{ __('translate.Proceed to Checkout') }} @endif
@endsection @push('js_section') @endpush