Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
@if (data_get($setUp, 'header.softDeletes')) <div x-data="{ open: false }" ..
Decoded Output download
<? @if (data_get($setUp, 'header.softDeletes'))
<div
x-data="{ open: false }"
class="mr-0 sm:mr-2 mt-2 sm:mt-0"
@click.outside="open = false"
>
<button
@click.prevent="open = ! open"
class="focus:ring-primary-600 focus-within:focus:ring-primary-600 focus-within:ring-primary-600 dark:focus-within:ring-primary-600 flex rounded-md ring-1 transition focus-within:ring-2 dark:ring-pg-primary-600 dark:text-pg-primary-300 text-gray-600 ring-gray-300 dark:bg-pg-primary-800 bg-white dark:placeholder-pg-primary-400 rounded-md border-0 bg-transparent py-2 px-3 ring-0 placeholder:text-gray-400 focus:outline-none sm:text-sm sm:leading-6 w-auto"
>
<div class="flex">
<x-livewire-powergrid::icons.trash class="text-pg-primary-500 dark:text-pg-primary-300" />
</div>
</button>
<div
x-show="open"
x-cloak
x-transition:enter="transform duration-200"
x-transition:enter-start="opacity-0 scale-90"
x-transition:enter-end="opacity-100 scale-100"
x-transition:leave="transform duration-200"
x-transition:leave-start="opacity-100 scale-100"
x-transition:leave-end="opacity-0 scale-90"
class="mt-2 py-2 w-48 bg-white shadow-xl absolute z-10 dark:bg-pg-primary-700"
>
<div
x-on:click="$wire.dispatch('pg:softDeletes-{{ $tableName }}', {softDeletes: ''}); open = false"
class="cursor-pointer flex justify-start block px-4 py-2 text-pg-primary-800 hover:bg-pg-primary-50 hover:text-black-200 dark:text-pg-primary-200 dark:hover:bg-gray-900 dark:hover:bg-pg-primary-700"
>
@lang('livewire-powergrid::datatable.soft_deletes.without_trashed')
</div>
<div
x-on:click="$wire.dispatch('pg:softDeletes-{{ $tableName }}', {softDeletes: 'withTrashed'}); open = false"
class="cursor-pointer flex justify-start block px-4 py-2 text-pg-primary-800 hover:bg-pg-primary-50 hover:text-black-200 dark:text-pg-primary-200 dark:hover:bg-gray-900 dark:hover:bg-pg-primary-700"
>
@lang('livewire-powergrid::datatable.soft_deletes.with_trashed')
</div>
<div
x-on:click="$wire.dispatch('pg:softDeletes-{{ $tableName }}', {softDeletes: 'onlyTrashed'}); open = false"
class="cursor-pointer flex justify-start block px-4 py-2 text-pg-primary-800 hover:bg-pg-primary-50 hover:text-black-200 dark:text-pg-primary-200 dark:hover:bg-gray-900 dark:hover:bg-pg-primary-700"
>
@lang('livewire-powergrid::datatable.soft_deletes.only_trashed')
</div>
</div>
</div>
@endif
?>
Did this file decode correctly?
Original Code
@if (data_get($setUp, 'header.softDeletes'))
<div
x-data="{ open: false }"
class="mr-0 sm:mr-2 mt-2 sm:mt-0"
@click.outside="open = false"
>
<button
@click.prevent="open = ! open"
class="focus:ring-primary-600 focus-within:focus:ring-primary-600 focus-within:ring-primary-600 dark:focus-within:ring-primary-600 flex rounded-md ring-1 transition focus-within:ring-2 dark:ring-pg-primary-600 dark:text-pg-primary-300 text-gray-600 ring-gray-300 dark:bg-pg-primary-800 bg-white dark:placeholder-pg-primary-400 rounded-md border-0 bg-transparent py-2 px-3 ring-0 placeholder:text-gray-400 focus:outline-none sm:text-sm sm:leading-6 w-auto"
>
<div class="flex">
<x-livewire-powergrid::icons.trash class="text-pg-primary-500 dark:text-pg-primary-300" />
</div>
</button>
<div
x-show="open"
x-cloak
x-transition:enter="transform duration-200"
x-transition:enter-start="opacity-0 scale-90"
x-transition:enter-end="opacity-100 scale-100"
x-transition:leave="transform duration-200"
x-transition:leave-start="opacity-100 scale-100"
x-transition:leave-end="opacity-0 scale-90"
class="mt-2 py-2 w-48 bg-white shadow-xl absolute z-10 dark:bg-pg-primary-700"
>
<div
x-on:click="$wire.dispatch('pg:softDeletes-{{ $tableName }}', {softDeletes: ''}); open = false"
class="cursor-pointer flex justify-start block px-4 py-2 text-pg-primary-800 hover:bg-pg-primary-50 hover:text-black-200 dark:text-pg-primary-200 dark:hover:bg-gray-900 dark:hover:bg-pg-primary-700"
>
@lang('livewire-powergrid::datatable.soft_deletes.without_trashed')
</div>
<div
x-on:click="$wire.dispatch('pg:softDeletes-{{ $tableName }}', {softDeletes: 'withTrashed'}); open = false"
class="cursor-pointer flex justify-start block px-4 py-2 text-pg-primary-800 hover:bg-pg-primary-50 hover:text-black-200 dark:text-pg-primary-200 dark:hover:bg-gray-900 dark:hover:bg-pg-primary-700"
>
@lang('livewire-powergrid::datatable.soft_deletes.with_trashed')
</div>
<div
x-on:click="$wire.dispatch('pg:softDeletes-{{ $tableName }}', {softDeletes: 'onlyTrashed'}); open = false"
class="cursor-pointer flex justify-start block px-4 py-2 text-pg-primary-800 hover:bg-pg-primary-50 hover:text-black-200 dark:text-pg-primary-200 dark:hover:bg-gray-900 dark:hover:bg-pg-primary-700"
>
@lang('livewire-powergrid::datatable.soft_deletes.only_trashed')
</div>
</div>
</div>
@endif
Function Calls
None |
Stats
MD5 | 63009d060f12cc5e67abe7a7e28d684a |
Eval Count | 0 |
Decode Time | 69 ms |