{{ $cartItemInfo['teacherName'] }}
{{ getTimezone() }}
@if($cartItemInfo['eventItem']->type == "in_person")
@if(!empty($cartItemInfo['eventItem']->specificLocation))
@php
$specificLocationTitle = $cartItemInfo['eventItem']->specificLocation->getFullAddress(false, false, true, false, false)
@endphp
{{ !empty($specificLocationTitle) ? $specificLocationTitle : trans('update.in_person') }}
@else
{{ trans('update.in_person') }}
@endif
@else
{{ trans('update.online') }}
@endif
{{ $cartItemInfo['ticketTitle'] }}
@if(!empty($cartItemInfo['discountPrice']))
{{ handlePrice($cartItemInfo['discountPrice'], true, true, false, null, true, $cartTaxType) }}
{{ handlePrice($cartItemInfo['price'], true, true, false, null, true, $cartTaxType) }}
@else
{{ handlePrice($cartItemInfo['price'], true, true, false, null, true, $cartTaxType) }}
@endif