Cachet/resources/views/partials/component.blade.php
2016-05-01 16:04:43 +01:00

16 lines
750 B
PHP

<li class="list-group-item {{ $component->group_id ? "sub-component" : "component" }}">
@if($component->link)
<a href="{{ $component->link }}" target="_blank" class="links">{{ $component->name }}</a>
@else
{{ $component->name }}
@endif
@if($component->description)
<i class="ion ion-ios-help-outline help-icon" data-toggle="tooltip" data-title="{{ $component->description }}" data-container="body"></i>
@endif
<div class="pull-right">
<small class="text-component-{{ $component->status }} {{ $component->status_color }}" data-toggle="tooltip" title="{{ trans('cachet.components.last_updated', ['timestamp' => $component->updated_at_formatted]) }}">{{ $component->human_status }}</small>
</div>
</li>