@extends('layouts.app')
@section('title', 'Billing')
@section('content')
Company: {{ $company->name }}
Company number: {{ $company->formattedCompanyNumber() }}
Status: {{ $company->status }}
Plan: {{ $company->subscriptionPlan?->name ?? $company->plan }}
@if ($company->isPerpetual())
Access: Unlimited (granted by Super Admin)
@elseif ($company->subscription_ends_at)
Access until: {{ $company->subscription_ends_at->format('M j, Y H:i') }}
@elseif ($company->isActive() && $company->plan === 'paid')
Access until: No end date (offline activation)
@endif
Your company has Perpetual access — no renewal needed.
@elseMonthly rate {{ $priceFormatted ?? ('$'.number_format($price, 2).' '.$currency) }}. Longer terms include Super Admin discounts.
@endif @if ($canManage && ! $company->isPerpetual())Pay with a card to enable auto-renew. Auto-renew charges one month at the monthly price (no prepaid discount).
@endifCard on file: {{ strtoupper($company->card_brand ?? 'CARD') }} ···· {{ $company->card_last4 }} @if ($company->card_exp) (exp {{ $company->card_exp }}) @endif
@elseNo reusable card saved yet. Complete a card checkout to store authorization for auto-renew.
@endif @if ($canManage) @endif @if ($company->renewal_failures > 0)Recent auto-renew failures: {{ $company->renewal_failures }}. Update your card by paying again.
@endifLimits come from your plan ({{ $plan?->name ?? 'Standard' }}). Upgrade or contact support to raise a cap.