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 namespace Encore\Admin\Grid\Displayers; use Encore\Admin\Admin; use Illuminate\Sup..
Decoded Output download
<?php
namespace Encore\Admin\Grid\Displayers;
use Encore\Admin\Admin;
use Illuminate\Support\Arr;
class Radio extends AbstractDisplayer
{
public function display($options = [])
{
return Admin::component('admin::grid.inline-edit.radio', [
'key' => $this->getKey(),
'name' => $this->getPayloadName(),
'value' => $this->getValue(),
'resource' => $this->getResource(),
'trigger' => "ie-trigger-{$this->getClassName()}",
'target' => "ie-template-{$this->getClassName()}",
'display' => Arr::get($options, $this->getValue(), ''),
'options' => $options,
]);
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Encore\Admin\Grid\Displayers;
use Encore\Admin\Admin;
use Illuminate\Support\Arr;
class Radio extends AbstractDisplayer
{
public function display($options = [])
{
return Admin::component('admin::grid.inline-edit.radio', [
'key' => $this->getKey(),
'name' => $this->getPayloadName(),
'value' => $this->getValue(),
'resource' => $this->getResource(),
'trigger' => "ie-trigger-{$this->getClassName()}",
'target' => "ie-template-{$this->getClassName()}",
'display' => Arr::get($options, $this->getValue(), ''),
'options' => $options,
]);
}
}
Function Calls
None |
Stats
MD5 | 5eded5e28820f817282583d03cfbfb3e |
Eval Count | 0 |
Decode Time | 85 ms |