Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
@php $id = $getId(); $isContained = $getContainer()->getParentComponent()->isConta..
Decoded Output download
<? @php
$id = $getId();
$isContained = $getContainer()->getParentComponent()->isContained();
$activeStepClasses = \Illuminate\Support\Arr::toCssClasses([
'fi-active',
'p-6' => $isContained,
'mt-6' => ! $isContained,
]);
$inactiveStepClasses = 'invisible absolute h-0 overflow-hidden p-0';
@endphp
<div
x-bind:class="{
@js($activeStepClasses): step === @js($id),
@js($inactiveStepClasses): step !== @js($id),
}"
x-on:expand="
if (! isStepAccessible(@js($id))) {
return
}
step = @js($id)
"
x-ref="step-{{ $id }}"
{{
$attributes
->merge([
'aria-labelledby' => $id,
'id' => $id,
'role' => 'tabpanel',
'tabindex' => '0',
], escape: false)
->merge($getExtraAttributes(), escape: false)
->class(['fi-fo-wizard-step outline-none'])
}}
>
{{ $getChildComponentContainer() }}
</div>
?>
Did this file decode correctly?
Original Code
@php
$id = $getId();
$isContained = $getContainer()->getParentComponent()->isContained();
$activeStepClasses = \Illuminate\Support\Arr::toCssClasses([
'fi-active',
'p-6' => $isContained,
'mt-6' => ! $isContained,
]);
$inactiveStepClasses = 'invisible absolute h-0 overflow-hidden p-0';
@endphp
<div
x-bind:class="{
@js($activeStepClasses): step === @js($id),
@js($inactiveStepClasses): step !== @js($id),
}"
x-on:expand="
if (! isStepAccessible(@js($id))) {
return
}
step = @js($id)
"
x-ref="step-{{ $id }}"
{{
$attributes
->merge([
'aria-labelledby' => $id,
'id' => $id,
'role' => 'tabpanel',
'tabindex' => '0',
], escape: false)
->merge($getExtraAttributes(), escape: false)
->class(['fi-fo-wizard-step outline-none'])
}}
>
{{ $getChildComponentContainer() }}
</div>
Function Calls
None |
Stats
MD5 | f7233332d1ea6493260f5fd9b2b38103 |
Eval Count | 0 |
Decode Time | 106 ms |