8 lines
307 B
PHP
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>
|