@extends('layouts.admin') @section('title', 'Tenant Billing — ' . $user->name) @push('styles') @endpush @section('content')
Instantly activate a plan at no charge — for manual payments, comped accounts, or one-off support. User will be emailed as "Complimentary" and the billing history will show it.
No billing history on record.
@else| Date | Plan | Cycle | Amount | Status | Gateway | Reference | Invoice |
|---|---|---|---|---|---|---|---|
| {{ \Carbon\Carbon::parse($inv->created_at)->format('M d, Y') }} | {{ optional($inv->plan)->name ?? '—' }} | {{ ucfirst($inv->billing_cycle ?? 'monthly') }} | @if($isComp) Complimentary @else ${{ number_format($inv->amount ?? 0, 2) }} @endif | {{ ucfirst($inv->status ?? 'unknown') }} | {{ $isComp ? 'Admin override' : ucfirst($inv->gateway ?? '—') }} | {{ $inv->reference ?? $inv->id }} | @if(($inv->status ?? '') === 'completed') PDF @else — @endif |
This user has no inventory tenants.