{{convertUtf8($package->title)}}
@if ($bex->recurring_billing == 1)
{{$package->duration == 'monthly' ? __('Monthly') : __('Yearly')}}
@endif
{{$bex->base_currency_symbol_position == 'left' ? $bex->base_currency_symbol : ''}}
{{$package->price}} {{$bex->base_currency_symbol_position == 'right' ? $bex->base_currency_symbol : ''}}
{!! replaceBaseUrl(convertUtf8($package->description)) !!}
@if ($bex->recurring_billing == 1)
@auth
@if ($activeSub->count() > 0 && empty($activeSub->first()->next_package_id))
@if ($activeSub->first()->current_package_id == $package->id)
{{__('Extend')}}
@else
{{__('Change')}}
@endif
@elseif ($activeSub->count() == 0)
{{__('Purchase')}}
@endif
@endauth
@guest
{{__('Purchase')}}
@endguest
@else
@if ($package->order_status != 0)
@php
if($package->order_status == 1) {
$link = route('front.packageorder.index', $package->id);
} elseif ($package->order_status == 2) {
$link = $package->link;
}
@endphp
@endif
@endif