@extends('user.layouts.app') @section('content')

Plan

{{ $currentPlan ? $currentPlan->name : 'No Plan' }}

Lifetime subscription

Get a promo code?

Monthly Cost

${{ $currentPlan ? number_format($currentPlan->price, 2) : '0' }}.Concurrent / month

No renewal on this plan

Workspaces

{{ $workspaceCount }} ({{ $currentPlan ? round(($workspaceCount / max($currentPlan->workspaces, 1)) * 100) : 0 }}%)

{{ $currentPlan ? $currentPlan->workspaces : 0 }}

Users

{{ $teammateCount }} ({{ $currentPlan ? round(($teammateCount / max($currentPlan->teammates, 1)) * 100) : 0 }}%)

{{ $currentPlan ? $currentPlan->teammates : 0 }}

Social Profiles

{{ $socialProfileCount }} ({{ $currentPlan ? round(($socialProfileCount / max($currentPlan->social_profiles, 1)) * 100) : 0 }}%)

{{ $currentPlan ? $currentPlan->social_profiles : 0 }}

AI Credits

{{ $userCredit->subscription_credits + $userCredit->purchased_credits }}

Unlimited

Storage (GB)

{{ $storageUsed }} ({{ $currentPlan ? round(($storageUsed / max($currentPlan->storage / 1000, 1)) * 100) : 0 }}%)

{{ $currentPlan ? $currentPlan->storage / 1000 : 0 }}

Automation Runs

{{ $automationRunCount }} ({{ $currentPlan ? round(($automationRunCount / max($currentPlan->workflows, 1)) * 100) : 0 }}%)

{{ $currentPlan ? $currentPlan->workflows : 0 }}

Editor Plugins

{{ $currentPlan && $currentPlan->editor_plugins ? 'Enabled' : 'Disabled' }}

Copywriting in Different Languages

{{ $currentPlan && $currentPlan->multilingual_copywriting ? 'Enabled' : 'Disabled' }}

Ecommerce Products

{{ $ecommerceProductCount }} ({{ $currentPlan ? round(($ecommerceProductCount / max($currentPlan->ecommerce_products, 1)) * 100) : 0 }}%)

{{ $currentPlan ? $currentPlan->ecommerce_products : 0 }}

Advanced Analytics

{{ $currentPlan && $currentPlan->advanced_analytics ? 'Enabled' : 'Disabled' }}

Branded Reports

{{ $currentPlan && $currentPlan->branded_reports ? 'Enabled' : 'Disabled' }}

REST API

{{ $currentPlan && $currentPlan->api_access ? 'Enabled' : 'Disabled' }}

@endsection