radarrplexorganizrnginxsonarrdashboardembycouchpotatonzbgetbookmarkapplication-dashboardmuximuxlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdall
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
462 B
13 lines
462 B
6 years ago
|
<div class="toggleinput">
|
||
|
<label class="name">{{ __('app.apps.enable') }}</label>
|
||
|
{!! Form::hidden('config[enabled]', '0') !!}
|
||
|
<label class="switch">
|
||
|
<?php
|
||
|
$checked = $item->enabled();
|
||
|
$set_checked = ($checked) ? ' checked="checked"' : '';
|
||
|
?>
|
||
|
<input type="checkbox" name="config[enabled]" value="1"<?php echo $set_checked;?> />
|
||
|
<span class="slider round"></span>
|
||
|
</label>
|
||
|
</div>
|