Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<div> <dl> <dt>Component ID</dt> <dd>{{ $id }}</dd> @foreach ..
Decoded Output download
<? <div>
<dl>
<dt>Component ID</dt>
<dd>{{ $id }}</dd>
@foreach (Tests\Browser\SyncHistory\Step::all() as $each_step)
<dt>{{ $each_step->title }}</dt>
<dd>
@if($each_step->is($step))
<button
disabled
dusk="step-{{ $each_step->id }}"
wire:click="setStep({{ $each_step->id }})"
>
Step {{ $each_step->title }} Active
</button>
@else
<button
dusk="step-{{ $each_step->id }}"
wire:click="setStep({{ $each_step->id }})"
>
Activate {{ $each_step->title }}
</button>
@endif
</dd>
@endforeach
</dl>
</div>
?>
Did this file decode correctly?
Original Code
<div>
<dl>
<dt>Component ID</dt>
<dd>{{ $id }}</dd>
@foreach (Tests\Browser\SyncHistory\Step::all() as $each_step)
<dt>{{ $each_step->title }}</dt>
<dd>
@if($each_step->is($step))
<button
disabled
dusk="step-{{ $each_step->id }}"
wire:click="setStep({{ $each_step->id }})"
>
Step {{ $each_step->title }} Active
</button>
@else
<button
dusk="step-{{ $each_step->id }}"
wire:click="setStep({{ $each_step->id }})"
>
Activate {{ $each_step->title }}
</button>
@endif
</dd>
@endforeach
</dl>
</div>
Function Calls
| None |
Stats
| MD5 | 794e9763637ef22910d8aee05fc584e0 |
| Eval Count | 0 |
| Decode Time | 84 ms |