@extends('layout') @section('title') {{ $seo_setting->seo_title }} @endsection @section('body-content')
@php $subtotal = 0; @endphp @foreach($carts as $cart) @php $itemTotal = $cart->product ? $cart->product->finalPrice * $cart->quantity : 0; $subtotal += $itemTotal; @endphp @endforeach
Product Price Quantity Amount
thumb

@if($cart->product) {{ __($cart->product->name) }} @else {{ __('translate.Product not available') }} @endif

{!! $cart->product->price_display !!}

{{ $cart->quantity }}

{{ currency($itemTotal) }}

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

{{ __('translate.Subtotal') }} {{ currency($subtotal) }}
{{ __('translate.Total') }} {{ currency($subtotal) }}
{{ __('translate.Proceed to Checkout') }}
{{ __('translate.Proceed to Checkout') }}
@endsection @push('js_section') @endpush