@extends('adminlte::page') @section('title', 'Super Admin Console') @include('partials.ui-polish') @section('content_header')

Super Admin Console

Platform monitoring for tenants, subscriptions, module access, support, and backups
Organizations Billing
@stop @section('content')
@forelse($organizations as $organization) @empty @endforelse
OrganizationPlanSubscriptionUsers
{{ $organization->name }}
{{ $organization->contact_email }}
{{ $organization->plan }} {{ $organization->subscription_status }} {{ $organization->users_count }}
No tenants yet.
@forelse($recentActivities as $activity)
{{ str_replace('.', ' ', $activity->action) }}
{{ $activity->organization?->name ?? 'Platform' }} · {{ $activity->created_at->diffForHumans() }}
@empty
No recent activity.
@endforelse
@include('admin.platform.partials.support-table', ['tickets' => $supportTickets])
@include('admin.platform.partials.backup-table', ['backups' => $backupRuns])
@stop