{{ __('Shopping Cart') }}
@if($stores->count() > 1){{ __('You have added products from different merchants. Shipping fees will be added to each merchant separately.') }}*
@endif{{ $store->getTranslation('title', app()->getLocale()) }}
@foreach ($store->products as $product) @php $cart = $product->carts()->where('user_id', auth()->id())->first(); @endphp @if ($cart){{ $product->getTranslation('description', app()->getLocale()) }}
{{ number_format($product->product_net_price, 2) }}
{{ number_format($cart->total, 2) }}  }})
{{ __('Order summary') }}
@foreach ($stores as $store) @php $storeCarts = $store->products->flatMap(function ($product) { return $product->carts->where('user_id', auth()->id()); }); $subtotal = $storeCarts->sum('total'); $vat = $subtotal * 0.15; @endphp{{ __('Store Title') }}: {{ $store->getTranslation('title', app()->getLocale()) }}
{{ __('Total products') }}
{{ number_format($subtotal, 2) }}  }})
{{ __('VAT') }} (15%)
{{ number_format($vat, 2) }}  }})
{{ __('Total') }}
{{ number_format($final_subtotal + $final_vat, 2) }}  }})
{{ __('Prices include tax') }}*