@php // Get real statistics from database $totalUsers = \App\Models\User::count(); $totalApps = \App\Models\App::count(); $totalBuilds = \App\Models\AppBuild::where('status', 'completed')->count(); // Minimum thresholds for display $userThreshold = 100; $appThreshold = 500; $buildThreshold = 1000; // Format numbers with thresholds - show minimum if below threshold $usersDisplay = $totalUsers >= $userThreshold ? number_format($totalUsers) : $userThreshold . '+'; $appsDisplay = $totalApps >= $appThreshold ? number_format($totalApps) : $appThreshold . '+'; $buildsDisplay = $totalBuilds >= $buildThreshold ? number_format($totalBuilds) : number_format($buildThreshold) . '+'; @endphp
{{ $usersDisplay }}
{{ __('landing.social_proof.happy_developers') }}
{{ $appsDisplay }}
{{ __('landing.social_proof.apps_created') }}
{{ $buildsDisplay }}
{{ __('landing.social_proof.builds_generated') }}