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 App\View\Components; use App\Abstracts\View\Component; class Dropdown e..

Decoded Output download

<?php

namespace App\View\Components;

use App\Abstracts\View\Component;

class Dropdown extends Component
{
    public $id;

    public $override;

    /**
     * Create a new component instance.
     *
     * @return void
     */
    public function __construct(
        $id = '', $override = ''
    ) {
        $this->id = $id;
        $this->override = explode(',', $override);
    }

    /**
     * Get the view / contents that represent the component.
     *
     * @return \Illuminate\Contracts\View\View|string
     */
    public function render()
    {
        return view('components.dropdown.index');
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace App\View\Components;

use App\Abstracts\View\Component;

class Dropdown extends Component
{
    public $id;

    public $override;

    /**
     * Create a new component instance.
     *
     * @return void
     */
    public function __construct(
        $id = '', $override = ''
    ) {
        $this->id = $id;
        $this->override = explode(',', $override);
    }

    /**
     * Get the view / contents that represent the component.
     *
     * @return \Illuminate\Contracts\View\View|string
     */
    public function render()
    {
        return view('components.dropdown.index');
    }
}

Function Calls

None

Variables

None

Stats

MD5 50fb630058336015a3e579b5d612832a
Eval Count 0
Decode Time 83 ms