Show error
All checks were successful
Deploy App / deploy (push) Successful in 11s

This commit is contained in:
2025-08-31 22:41:48 +02:00
parent 7764af432a
commit 6a72b7150b
7 changed files with 49 additions and 39 deletions

View File

@@ -16,19 +16,26 @@
</td>
<td
@class([
'text-red-400' => $log->status === 'failed',
'text-green-400' => $log->status === 'success',
'text-yellow-400' => $log->status === 'pending',
"text-red-400" => $log->status === "failed",
"text-green-400" => $log->status === "success",
"text-yellow-400" => $log->status === "pending",
]),
class="px-4 py-2"
@if ($log->status === "failed")
wire:click="showError({{ $log->id }})"
style="cursor: pointer;"
@endif
>
{{ $log->status }}
@if ($log->status === "failed")
<i class="fas fa-exclamation-circle ml-1"></i>
@endif
</td>
<td class="px-4 py-2">
{{ $log->started_at ?? '' }}
{{ $log->started_at ?? "" }}
</td>
<td class="px-4 py-2">
{{ $log->finished_at ?? '' }}
{{ $log->finished_at ?? "" }}
</td>
</tr>
@endforeach