Update monitor.blade.php

This commit is contained in:
2020-09-17 15:39:16 +05:00
parent ac1d17984e
commit f727c0cec0

View File

@@ -38,8 +38,23 @@
<td class="px-6 py-4 whitespace-no-wrap text-sm leading-5 text-gray-500"> <td class="px-6 py-4 whitespace-no-wrap text-sm leading-5 text-gray-500">
{{$task->cron}} {{$task->cron}}
</td> </td>
<td class="px-6 py-4 whitespace-no-wrap text-sm leading-5 text-gray-500"> <td class="px-6 py-4 whitespace-no-wrap text-sm leading-5 text-gray-500 flex items-center">
{{$task->last_ping_at->diffforHumans()}} {{$task->last_ping_at->diffforHumans()}}
@if($task->last_ping_at->between(Carbon\Carbon::now()->subMinutes(5), \Carbon\Carbon::now()))
<div class="ml-5 flex items-center">
<span>Healthy</span>
<svg class="w-6 h-6 text-green-500" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
</div>
@else
<div class="ml-5 flex items-center">
<span>Danger</span>
<svg class="w-6 h-6 text-red-500" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 14l2-2m0 0l2-2m-2 2l-2-2m2 2l2 2m7-2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
</div>
@endif
</td> </td>
</tr> </tr>
@endforeach @endforeach