Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
@props(['position' => 'left']) <v-tabs position="{{ $position }}" {{ $attributes ..
Decoded Output download
<? @props(['position' => 'left'])
<v-tabs
position="{{ $position }}"
{{ $attributes }}
>
<x-shop::shimmer.tabs />
</v-tabs>
@pushOnce('scripts')
<script
type="text/x-template"
id="v-tabs-template"
>
<div>
<div
class="flex flex-row justify-center gap-8 bg-zinc-100 max-sm:gap-1.5"
:style="positionStyles"
>
<div
role="button"
tabindex="0"
v-for="tab in tabs"
class="cursor-pointer px-8 py-5 text-xl font-medium text-zinc-600 max-md:px-4 max-md:py-3 max-md:text-sm max-sm:px-2.5 max-sm:py-2.5"
:class="{'border-b-2 border-navyBlue !text-black transition': tab.isActive }"
:id="tab.$attrs.id + '-button'"
@click="change(tab)"
>
@{{ tab.title }}
</div>
</div>
<div>
{{ $slot }}
</div>
</div>
</script>
<script type="module">
app.component('v-tabs', {
template: '#v-tabs-template',
props: ['position'],
data() {
return {
tabs: []
}
},
computed: {
positionStyles() {
return [
`justify-content: ${this.position}`
];
},
},
methods: {
change(selectedTab) {
this.tabs.forEach(tab => {
tab.isActive = (tab.title == selectedTab.title);
});
},
},
});
</script>
@endPushOnce
?>
Did this file decode correctly?
Original Code
@props(['position' => 'left'])
<v-tabs
position="{{ $position }}"
{{ $attributes }}
>
<x-shop::shimmer.tabs />
</v-tabs>
@pushOnce('scripts')
<script
type="text/x-template"
id="v-tabs-template"
>
<div>
<div
class="flex flex-row justify-center gap-8 bg-zinc-100 max-sm:gap-1.5"
:style="positionStyles"
>
<div
role="button"
tabindex="0"
v-for="tab in tabs"
class="cursor-pointer px-8 py-5 text-xl font-medium text-zinc-600 max-md:px-4 max-md:py-3 max-md:text-sm max-sm:px-2.5 max-sm:py-2.5"
:class="{'border-b-2 border-navyBlue !text-black transition': tab.isActive }"
:id="tab.$attrs.id + '-button'"
@click="change(tab)"
>
@{{ tab.title }}
</div>
</div>
<div>
{{ $slot }}
</div>
</div>
</script>
<script type="module">
app.component('v-tabs', {
template: '#v-tabs-template',
props: ['position'],
data() {
return {
tabs: []
}
},
computed: {
positionStyles() {
return [
`justify-content: ${this.position}`
];
},
},
methods: {
change(selectedTab) {
this.tabs.forEach(tab => {
tab.isActive = (tab.title == selectedTab.title);
});
},
},
});
</script>
@endPushOnce
Function Calls
| None |
Stats
| MD5 | 62285d2f66c4866c18b63abbea61fb39 |
| Eval Count | 0 |
| Decode Time | 106 ms |