This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user