mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-23 19:24:03 +01:00
18 lines
752 B
PHP
18 lines
752 B
PHP
<li class="list-group-item {{ $component->group_id ? "sub-component" : "component" }}">
|
|
<div class="checkbox">
|
|
<label for="component-{{ $component->id }}">
|
|
<input type="checkbox"
|
|
id="component-{{ $component->id }}"
|
|
name="subscriptions[]"
|
|
value="{{ $component->id }}"
|
|
@if (in_array($component->id, $subscriptions) || $subscriber->global)
|
|
checked="checked"
|
|
@endif />
|
|
{{ $component->name }}
|
|
</label>
|
|
@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>
|
|
</li>
|