14 lines
801 B
PHP
14 lines
801 B
PHP
<details class="mt-4 rounded border border-gray-200 bg-white p-4 shadow-sm open:shadow-sm dark:border-gray-800 dark:bg-gray-900">
|
|
<summary class="cursor-pointer list-none text-sm font-semibold text-gray-900 dark:text-gray-100">
|
|
{{ $refreshOutputTitle ?? __('Update Output') }}
|
|
@if($refreshOutputAt)
|
|
<span class="ml-2 text-xs font-normal text-gray-500 dark:text-gray-400">
|
|
{{ __('Last refreshed at :time', ['time' => $refreshOutputAt]) }}
|
|
</span>
|
|
@endif
|
|
</summary>
|
|
<div class="mt-3 text-sm text-gray-700 dark:text-gray-200">
|
|
<pre class="whitespace-pre-wrap break-words rounded bg-gray-50 p-4 text-xs text-gray-800 dark:bg-gray-900/50 dark:text-gray-200">{{ implode("\n", $refreshOutput) }}</pre>
|
|
</div>
|
|
</details>
|