{{-- Price Plans --}} @if((!isFreeModeEnabled() || isFreeModeShowPriceEnabled()) and !empty($bundle->tickets) and count($bundle->tickets))
{{ trans('update.select_a_pricing_plan') }}
@foreach($bundle->tickets as $ticket)
isValid()) ? 'disabled' : '' }} data-discount-price="{{ handlePrice($ticket->getPriceWithDiscount($bundle->price, !empty($activeSpecialOffer) ? $activeSpecialOffer : null)) }}" value="{{ ($ticket->isValid()) ? $ticket->id : '' }}" name="ticket_id" id="courseOff{{ $ticket->id }}">
@endforeach
@endif {{-- Price --}} @if((!isFreeModeEnabled() || isFreeModeShowPriceEnabled()) and $bundle->price > 0) @php $realPrice = handleCoursePagePrice($bundle->price); @endphp
@if(!empty($activeSpecialOffer))
@php $priceWithDiscount = handleCoursePagePrice($bundle->getPrice()); @endphp
{{ $priceWithDiscount['price'] }}
@if(!empty($priceWithDiscount['tax'])) + {{ $priceWithDiscount['tax'] }} {{ trans('cart.tax') }} @endif
@endif
{{ $realPrice['price'] }}
@if(!empty($realPrice['tax']) and empty($activeSpecialOffer)) + {{ $realPrice['tax'] }} {{ trans('cart.tax') }} @endif
@else
{{ trans('public.free') }}
@endif