@extends('layouts.admin') @section('title') ModpackChecker @endsection @section('content-header')

ModpackChecker4-Platform Modpack Version Monitoring

@endsection @section('content') {{-- License Status Banners --}} @if($license['status'] === 'expired')

License Expired

Your license could not be validated. Pro features are disabled. Please check your order ID or contact support.

@elseif($license['status'] === 'grace')

License Validation Warning

Could not reach license server. Grace period expires: {{ $license['grace_expires'] }}

@endif
{{ csrf_field() }}
{{-- License Activation --}}

License

@if($license['status'] === 'active') Active @elseif($license['status'] === 'grace') Grace Period @elseif($license['status'] === 'expired') Expired @else Not Activated @endif

Enter the order ID from your BuiltByBit purchase to activate.

@if($license['status'] === 'active' || $license['status'] === 'grace')
Tier: {{ ucfirst($license['tier']) }}  |  Last Validated: {{ $license['last_validated'] ?: 'Never' }}
@endif
@if(!empty($license['order_id'])) @endif
{{-- CurseForge API Key --}}

CurseForge API Key

Get your free API key from console.curseforge.com.

{{-- Check Interval (PRO) --}}

Check Interval PRO

@if($license['tier'] === 'professional' && $license['status'] !== 'expired') Professional tier — custom check intervals enabled. @else Upgrade to Professional for more frequent automated checks. @endif

{{-- Discord Webhook (PRO) --}}

Discord Notifications PRO

@if($license['tier'] === 'professional' && $license['status'] !== 'expired') Professional tier — Discord webhook alerts enabled. @else Upgrade to Professional for Discord update alerts. @endif

{{-- Supported Platforms --}}

Supported Platforms

CurseForge Requires API Key
Modrinth No key required
Technic No key required
FTB @if($license['tier'] === 'professional') Enabled @else PRO @endif
{{-- Update Available --}} @if(!empty($license['latest_version']) && $license['latest_version'] !== '1.0.0')

Update Available

Version {{ $license['latest_version'] }} is available.

Download from BuiltByBit
@endif
{{-- How It Works --}}

How It Works

ModpackChecker automatically detects modpacks via Egg Variables or file fingerprinting. Set MODPACK_PLATFORM and MODPACK_ID in your server's startup variables for the most reliable detection.

{{-- Save Button --}}
{{-- Support --}}

Need Help?

Join our Discord for support: firefrostgaming.com/discord

@endsection