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

Subscription & Modules

Read-only view of your organization plan and enabled modules
Dashboard
@stop @section('content')
Organization
{{ $organization->name }}
Billing
{{ $organization->billing_status }}
Subscription Ends
{{ $organization->subscription_ends_at?->format('M d, Y') ?? 'Not set' }}
Module Control
Platform Super Admin
@forelse($modules as $item) @empty @endforelse
Module Status Plan Source Activated Expires
{{ $item['module']->name }}
{{ $item['module']->description }}
{{ $item['status'] }} {{ $item['source_plan'] ?? $organization->plan }} {{ $item['activated_at']?->format('M d, Y') ?? '-' }} {{ $item['expires_at']?->format('M d, Y') ?? 'No expiry' }}
No modules have been assigned to this organization.
@stop