Files
jabali-panel/resources/views/filament/admin/pages/ssl-manager.blade.php
2026-01-24 19:36:46 +02:00

26 lines
919 B
PHP

<x-filament-panels::page>
@if($autoSslLog)
<x-filament::section
icon="heroicon-o-command-line"
icon-color="success"
collapsible
>
<x-slot name="heading">{{ __('SSL Check Log') }}</x-slot>
<x-slot name="headerEnd">
<x-filament::icon-button
wire:click="$set('autoSslLog', '')"
icon="heroicon-o-x-mark"
color="gray"
size="sm"
tooltip="{{ __('Clear Log') }}"
/>
</x-slot>
<div class="rounded-lg overflow-hidden">
<pre class="bg-gray-950 p-4 font-mono text-xs leading-relaxed max-h-80 overflow-y-auto whitespace-pre-wrap text-gray-300">{{ $autoSslLog }}</pre>
</div>
</x-filament::section>
@endif
{{ $this->table }}
</x-filament-panels::page>