@if ($plan->isFeatured())
{{ translate('Featured') }}
@endif
{{ $plan->name }}
@if (!$plan->isFree()) {{ $plan->getFormatPrice() }} /{{ strtolower($plan->getIntervalName()) }} @else {{ translate('Free') }} @endif

{{ $plan->description }}

@csrf @auth @if (authUser()->subscribedToPlan($plan->id)) @if (authUser()->subscription->isAboutToExpire() && !authUser()->subscription->plan->isFree()) @elseif(authUser()->subscription->isExpired() && !authUser()->subscription->plan->isFree()) @elseif(authUser()->subscription->isExpired() && authUser()->subscription->plan->isFree()) @else @endif @else @endif @else {{ translate('Start Now') }} @endauth
@if ($plan->hasUnlimitedDownloads()) {{ translate('Unlimited downloads') }} @else {{ translate(':count downloads per day', ['count' => number_format($plan->downloads)]) }} @endif
@if ($plan->custom_features) @foreach ($plan->custom_features as $customFeature)
{{ $customFeature }}
@endforeach @endif