@php $logCount = \App\Models\MikrotikLog::count(); $retention = \App\Models\MainSiteData::getValue('log_retention_days', 30); $enabled = \App\Models\MainSiteData::getValue('log_server_enabled', false); @endphp

{{ number_format($logCount) }}

{{ __('Persisted Log Entries in Database') }}

{{ __(':days Days', ['days' => $retention]) }}

{{ __('Automatic Retention Threshold') }}

@if($enabled) {{ __('LOGGER ACTIVE') }} @else {{ __('PAUSED') }} @endif