@extends('layouts.app') @section('title', 'Subscription') @section('content') @include('super-admin.partials.nav') Trial analytics

Paid companies

{{ $paidActive }}

Expiring in 7 days

{{ $expiringSoon }}

Perpetual companies

{{ $perpetualCompanies }}

Best prepaid save

{{ rtrim(rtrim(number_format(max($discounts), 1), '0'), '.') }}%

Plans & pricing

Standard, Pro, and Plus are prepaid (1, 3, 6, 9, or 12 months) with discounts on longer terms. Toggle Available for purchase to show a plan at registration and billing. Perpetual is unlimited and can only be granted by a Super Admin — it is never sold. Trial length is managed on Trials.

@csrf @method('PUT')

Used to extend access (1 month = this many days). Default 30.

One-time add-on for Standard (Pro/Plus include branding).

@foreach ($plans as $plan) @php $old = old('plans.'.$plan->slug, []); @endphp @endforeach
Plan Monthly price Available for purchase Max devices Max users Max keywords Retention (days) Max sub-companies Branding included
@if ($plan->is_perpetual) Super Admin only @endif @if ($plan->is_perpetual) @else @endif @if ($plan->is_perpetual) Never @else @endif @if ($plan->is_perpetual) @else @endif @if ($plan->is_perpetual) @else @endif slug.'.includes_branding', $plan->includes_branding))>

Prepaid term discounts (apply to Standard, Pro, and Plus)

@foreach ($plans as $plan) @unless ($plan->is_perpetual) @endunless @endforeach @foreach ([1, 3, 6, 9, 12] as $months) @endforeach
Term{{ $plan->name }}
Discount %

{{ $months === 1 ? '1 month' : $months.' months' }}

Checkout preview (Standard terms)

@foreach ($termPlans as $plan)
@if ($plan['recommended']) Best value @endif

{{ $plan['label'] }}

{{ $plan['price_formatted'] }}

@if ($plan['discount_percent'] > 0)

{{ $plan['list_price_formatted'] }}

Save {{ rtrim(rtrim(number_format($plan['discount_percent'], 1), '0'), '.') }}%

@else

{{ $plan['per_month_formatted'] }}/mo

@endif
@endforeach
@endsection