Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<li class="list-group-item {{ $component->group_id ? "sub-component" : "component" }}"> ..

Decoded Output download

<?  <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>
 ?>

Did this file decode correctly?

Original Code

<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>

Function Calls

None

Variables

None

Stats

MD5 f9fcccda46e65d25036a6df9b1d8bfc9
Eval Count 0
Decode Time 103 ms