Ayrıntılı Sağlık Teşhis Raporu
{{-- Sekmeler --}}
{{-- Teşhis Listesi İçeriği --}} @if($activeTab !== 'hints')
@php $filteredChecks = collect($checks)->filter(function($check, $key) use ($activeTab) { if ($activeTab === 'all') return true; if ($activeTab === 'env') { return in_array($key, ['php_version', 'laravel_version', 'app_env', 'app_debug', 'app_key', 'app_url', 'timezone', 'php_memory_limit', 'upload_limit']); } if ($activeTab === 'storage') { return in_array($key, ['storage_writable', 'bootstrap_cache_writable', 'public_storage_symlink', 'log_folder_writable', 'disk_usage', 'laravel_logs']); } if ($activeTab === 'cache_queue') { return in_array($key, ['cache_driver', 'config_cached', 'routes_cached', 'views_cached', 'cache_test', 'queue_connection', 'queue_failed_jobs', 'queue_test', 'scheduler_heartbeat']); } if ($activeTab === 'integration') { return in_array($key, ['mail_config', 'backup_status', 'modules_health', 'debug_security', 'env_file_security']); } return false; }); @endphp @forelse($filteredChecks as $key => $check) @empty @endforelse
Kontrol Adı Durum Açıklama / Teşhis Mesajı Ayrıntı
{{ $check['label'] ?? $key }} {{ $key }} @if(($check['status'] ?? 'unknown') === 'ok') OK @elseif(($check['status'] ?? 'unknown') === 'warning') WARNING @elseif(($check['status'] ?? 'unknown') === 'critical') CRITICAL @else UNKNOWN @endif {{ $check['message'] }} @if(!empty($check['data'])) @else - @endif
Kontrol grubu boş.
@else {{-- Performans Önerileri Sekmesi --}}
@if(count($performanceHints) > 0) @else
Harika! Uygulanan tüm ayarlar optimum düzeyde.

Uygulamanın performansını artıracak herhangi bir ek yapılandırma önerisi bulunmuyor.

@endif
@endif