{{ __('Pricing') }}

{{ __('Start free. Upgrade when you outgrow it.') }}

{{ __('Free') }}

$0

{{ __('forever') }}

  • {{ __('Up to :count recipes', ['count' => $subscriptionSetting->free_recipe_limit]) }}
  • {{ __('Categories, tags, and photos') }}
  • {{ __('Share recipes publicly') }}
{{ __('Get started') }}
{{ __('Unlimited') }}

{{ __('Subscription') }}

${{ number_format((float) $subscriptionSetting->price_monthly, 2) }}/{{ __('mo') }}

{{ __('or :price/year, billed annually', ['price' => '$' . number_format((float) $subscriptionSetting->price_annual, 2)]) }}

  • {{ __('Unlimited recipes') }}
  • {{ __('Everything in Free') }}
  • {{ __('Monthly or annual billing') }}
@php $paypalReady = $paypalSetting->enabled && $paypalSetting->activeClientId(); $stripeReady = $stripeSetting->enabled && $stripeSetting->activePublishableKey(); $usingPaypal = $paymentGatewaySetting->active_gateway === 'paypal' && $paypalReady; $usingStripe = $paymentGatewaySetting->active_gateway === 'stripe' && $stripeReady; @endphp @guest {{ __('Log in to subscribe') }} @elseif ($activePayment)
{{ __("You're subscribed until :date.", ['date' => $activePayment->period_end->format('F j, Y')]) }}
@elseif ($usingPaypal)
@if (session('checkoutError'))
{{ session('checkoutError') }}
@endif
@elseif ($usingStripe)
@if (session('checkoutError'))
{{ session('checkoutError') }}
@endif
@else @endguest