@if(count($this->getDomainOptions()) > 0) {{ __('Select Domain') }} {{ __('Choose the domain you want to view logs for.') }}
@foreach($this->getDomainOptions() as $value => $label) @endforeach
@if($this->selectedDomain) {{ __('Log Viewer') }} {{ __('Viewing :type for :domain', ['type' => $this->logType === 'access' ? __('access log') : __('error log'), 'domain' => $this->selectedDomain]) }} @if(!empty($this->logInfo)) ({{ $this->logInfo['file_size'] ?? '' }}, {{ __(':lines lines', ['lines' => $this->logInfo['lines'] ?? 100]) }}) @endif
{{ __('Access Log') }} {{ __('Error Log') }}
@if($this->logContent) @else {{ __('No Log Entries') }} {{ $this->logType === 'access' ? __('No access log entries found. Logs will appear after visitors access your site.') : __('No error log entries found. This is good - your site has no errors.') }} @endif
@endif @else

{{ __('No Domains Yet') }}

{{ __('Add a domain first to view logs and statistics.') }}

{{ __('Add Domain') }}
@endif