Usage

Monitor your current period usage and estimated charges

@if(!$usageBillingEnabled)

Usage billing not enabled

Usage-based billing is not currently enabled for your account. Your subscription includes flat-rate pricing.

@elseif(!$activeSubscription)

No active subscription

Subscribe to a plan to start tracking your usage.

View Plans
@else

Current Billing Period

{{ $periodStart }} - {{ $periodEnd }}

Days remaining
{{ $daysRemaining }}
@if($currentUsage->isEmpty())

No usage recorded this period

@else
@foreach($currentUsage as $usage)
{{ $usage['meter_name'] }} {{ $usage['unit_label'] }}
{{ $this->formatNumber($usage['quantity']) }}
@if($usage['estimated_charge'] > 0)
Est. charge: {{ $this->formatMoney($usage['estimated_charge'], $usage['currency']) }}
@endif @php $percentage = $this->getUsagePercentage($usage, $usage['included_quota'] ?? null); $statusColour = $this->getUsageStatusColour($percentage); @endphp @if($percentage !== null)
Included quota {{ $percentage }}%
@endif
@endforeach
@endif
@if($estimatedCharges > 0)

Estimated Usage Charges

Based on current period usage. Final charges calculated at period end.

{{ $this->formatMoney($estimatedCharges) }}
+ subscription fee
@endif @if($usageHistory->isNotEmpty())

Usage History

Previous billing periods

@foreach($usageHistory as $period => $records) @foreach($records as $index => $record) @if($index === 0) @endif @endforeach @endforeach
Period Meter Quantity Charge Status
{{ $record->period_start->format('M Y') }} {{ $record->meter->name }} {{ $this->formatNumber($record->quantity) }} {{ $record->meter->unit_label }} {{ $this->formatMoney($record->calculateCharge()) }} @if($record->billed) Billed @else Pending @endif
@endif
Refresh Usage Data

Understanding your usage

Usage is tracked throughout your billing period and charged at the end. Some features may include a quota with your subscription, with overage charges applying beyond that limit.

View Billing Need Help?
@endif