@props([ 'products' => [], 'productType' => 'base', // 'base' oder 'upgrade' 'formRoute' => '', 'formStep' => 3 ]) @if(count($products) > 0)
@foreach($products as $product) @php $cartItem = Yard::instance('subscription')->getCartItemByProduct($product->id, 'withTaxFree'); $qty = isset($cartItem->qty) ? $cartItem->qty : 0; $rowId = isset($cartItem->rowId) ? $cartItem->rowId : ''; @endphp @endforeach
{{ __('abo.' . $productType . '_product') }}   {{ __('order.unit_price') }}
@if(count($product->images)) {{ $product->getLang('name') }} @endif
{{$product->getLang('name')}}
{!! get_abo_type_badge($productType) !!}
{!! $product->getLang('copy') !!}
{{ $product->getFormattedPriceWith(\App\Services\UserService::getTaxFree(), false, \App\Services\UserService::$user_country) }} € @if(\App\Services\UserService::$user_country && \App\Services\UserService::$user_country->currency) {!! $product->getFormattedPriceCurrencyWith(\App\Services\UserService::getTaxFree(), false, \App\Services\UserService::$user_country) !!} @endif
@endif