@extends('layouts.app') @section('title', __('Plans')) @section('content')
{{ __('Define tiers, pricing, quotas and features.') }}
| {{ __('Code') }} | {{ __('Name') }} | {{ __('Status') }} | {{ __('Monthly') }} | {{ __('Yearly') }} | {{ __('Subscribers') }} | |
|---|---|---|---|---|---|---|
| {{ $plan->code }}@if($plan->is_featured)★@endif |
{{ $plan->displayName() }}
@if($t = $plan->displayTagline()){{ $t }} @endif
|
{{ __(ucfirst($plan->status)) }} @if(! $plan->is_public){{ __('hidden') }}@endif | @if($plan->currentVersion?->price_monthly !== null){{ number_format($plan->currentVersion->price_monthly, 2) }} {{ $plan->currentVersion->currency }}@else—@endif | @if($plan->currentVersion?->price_yearly !== null){{ number_format($plan->currentVersion->price_yearly, 2) }} {{ $plan->currentVersion->currency }}@else—@endif | {{ $plan->active_subs_count }} | {{ __('Edit') }} |
| {{ __('No plans yet.') }} | ||||||