@extends('adminlte::page') @section('title', 'Subscriptions & Billing') @include('partials.ui-polish') @section('content_header')

Subscriptions & Billing

Plans, renewals, invoices, revenue, discounts, and payment status @stop @section('content') @if(session('success')) {{ session('success') }} @endif @if($errors->any()) @endif
@csrf
{{ old('features') }}
@foreach($plans as $plan)
{{ $plan->name }}
{{ $plan->is_active ? 'Active' : 'Inactive' }}
USD {{ number_format($plan->monthly_price, 2) }}
{{ $plan->max_users ? $plan->max_users.' users' : 'Unlimited users' }} · {{ $plan->storage_gb ? $plan->storage_gb.' GB' : 'Flexible storage' }}
@endforeach
@forelse($invoices as $invoice) @empty @endforelse
InvoiceOrganizationPlanAmountDueStatus
{{ $invoice->invoice_number }} {{ $invoice->organization?->name }} {{ $invoice->plan }} {{ $invoice->currency }} {{ number_format($invoice->amount, 2) }} {{ $invoice->due_date->format('M d, Y') }} {{ $invoice->status }}
No invoices found.
@if($invoices->hasPages())
{{ $invoices->links() }}
@endif
@stop