@extends('frontend.theme_2.app') @section('title', 'Cart & Checkout') @section('content')
{{ __('Cart Summary') }}
@forelse($cartData as $item) @empty @endforelse
{{ ucfirst(__('Product')) }} {{ ucfirst(__('price')) }} {{ ucfirst(__('quantity')) }} {{ ucfirst(__('subtotal')) }}
{{ $item['product']->source_name }}

{{ ucfirst($item['product']->source_name ?? '') }}

@if ($item['size']) {{ __('size') }}: {{ $item['size'] ?? '' }} | @endif @if ($item['color']) {{ __('color') }}: @endif
{{ $currecy_details ?? '$' }}{{ $item['price'] }}
- +
{{ $currecy_details ?? '$' }}{{ $item['subtotal'] }}
{{ __('cart_empty_info') }}
{{ __('Cart Totals') }}

{{ __('Subtotal') }}

{{ $currecy_details ?? '$' }}{{ $totalPrice }}

{{ __('Total') }}
{{ $currecy_details ?? '$' }}{{ $totalPrice }}
@auth {{ __('Proceed to Checkout') }} @endauth @guest @endguest
@auth @endauth @endsection @auth @push('styles') @endpush @push('plugins') @endpush @endauth @push('scripts') @endpush