Files
jabali-panel/resources/views/filament/jabali/components/cron-output.blade.php
2026-01-24 19:36:46 +02:00

8 lines
307 B
PHP

<div class="rounded-lg bg-gray-950 p-4 font-mono text-sm text-gray-300 overflow-x-auto max-h-96 overflow-y-auto">
@if($output)
<pre class="whitespace-pre-wrap break-words">{{ $output }}</pre>
@else
<p class="text-gray-500 italic">{{ __('No output recorded') }}</p>
@endif
</div>