@if (!empty($activePackage) and $activePackage->package_id == $package->id)
@elseif(!empty($specialOffer))
@if (!empty($package->price) and $package->price > 0)
@if (!empty($specialOffer))
{{ handlePrice($package->getPrice(), true, true, false, null, true) }}
{{ handlePrice($package->price, true, true, false, null, true) }}
@else
@php
$price = handlePrice($package->price, true, true, false, null, true);
$monthlyPrice = handlePrice(
$package->price / 12,
true,
true,
false,
null,
true,
);
@endphp
{{ $monthlyPrice }}
{{ trans('update.per_month') }}
{{ trans('update.billed_annually') }}
@endif
@else
{{ trans('public.free') }}
@endif