@extends('layouts.app') @section('title', 'License Details - Accounting Reports') @section('content')

License Details

View and manage your Accounting Reports module license information

@if($has_license)
License Status

{{ $license_status }}

@if($expiry_date && $expiry_date !== '0000-00-00')
@if($is_expired) Expired on {{ \Carbon\Carbon::parse($expiry_date)->format('M d, Y') }} @elseif($days_until_expiry !== null) @if($days_until_expiry <= 30) Expires in {{ $days_until_expiry }} days ({{ \Carbon\Carbon::parse($expiry_date)->format('M d, Y') }}) @else Valid until {{ \Carbon\Carbon::parse($expiry_date)->format('M d, Y') }} ({{ $days_until_expiry }} days remaining) @endif @endif
@endif
License Type
{{ $license_type }}
@if($is_expired)
License Expired

Your license has expired. Please renew your license to continue using the Accounting Reports module.

@elseif($days_until_expiry !== null && $days_until_expiry <= 30)
License Expiring Soon

Your license will expire in {{ $days_until_expiry }} days. Please renew your license to avoid service interruption.

@endif

Module Information

{{ $module_name }}
v{{ $module_version }}
{{ $license_code }}
{{ $license_username ?? 'Not Available' }}
{{ $license_email }}

Installation Details

{{ $install_domain ?? 'Not Available' }}
@if($install_url) {{ $install_url }} @else Not Available @endif
@if($license_validated_at) {{ \Carbon\Carbon::parse($license_validated_at)->format('M d, Y h:i A') }} @else Not Available @endif
@if($expiry_date && $expiry_date !== '0000-00-00')
{{ \Carbon\Carbon::parse($expiry_date)->format('M d, Y') }} @if($is_expired) Expired @elseif($days_until_expiry !== null) Expires in {{ $days_until_expiry }} days @endif
@endif @if($license_details && isset($license_details->updated_at))
{{ \Carbon\Carbon::parse($license_details->updated_at)->format('M d, Y h:i A') }}
@endif
@else

No License Found

No license information found for the Accounting Reports module. Please install a valid license to use this module.

@endif
@endsection @section('javascript') @endsection