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 /** * Invoice Ninja (https://invoiceninja.com). * * @link https://github.com/inv..

Decoded Output download

<?php

/**
 * Invoice Ninja (https://invoiceninja.com).
 *
 * @link https://github.com/invoiceninja/invoiceninja source repository
 *
 * @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
 *
 * @license https://www.elastic.co/licensing/elastic-license
 */

namespace App\Livewire\BillingPortal;

use Livewire\Component;
use Livewire\Attributes\Lazy;
use App\Services\ClientPortal\InstantPayment;

class Submit extends Component
{
    public array $context;

    public function mount()
    {

        $this->dispatch(
            'purchase.submit',
            invoice_hashed_id: $this->context['form']['invoice_hashed_id'],
            payable_amount: $this->context['form']['payable_amount'],
            company_gateway_id: $this->context['form']['company_gateway_id'],
            payment_method_id: $this->context['form']['payment_method_id'],
            contact_first_name: $this->context['contact']['first_name'],
            contact_last_name: $this->context['contact']['last_name'],
            contact_email: $this->context['contact']['email'],
        );
    }

    public function render()
    {

        return <<<'HTML'
            <svg class="animate-spin h-8 w-8 text-primary" xmlns="http://www.w3.org/2000/svg"
                    fill="none" viewBox="0 0 24 24">
                <circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor"
                        stroke-width="4"></circle>
                <path class="opacity-75" fill="currentColor"
                        d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
            </svg>    
        HTML;
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

/**
 * Invoice Ninja (https://invoiceninja.com).
 *
 * @link https://github.com/invoiceninja/invoiceninja source repository
 *
 * @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
 *
 * @license https://www.elastic.co/licensing/elastic-license
 */

namespace App\Livewire\BillingPortal;

use Livewire\Component;
use Livewire\Attributes\Lazy;
use App\Services\ClientPortal\InstantPayment;

class Submit extends Component
{
    public array $context;

    public function mount()
    {

        $this->dispatch(
            'purchase.submit',
            invoice_hashed_id: $this->context['form']['invoice_hashed_id'],
            payable_amount: $this->context['form']['payable_amount'],
            company_gateway_id: $this->context['form']['company_gateway_id'],
            payment_method_id: $this->context['form']['payment_method_id'],
            contact_first_name: $this->context['contact']['first_name'],
            contact_last_name: $this->context['contact']['last_name'],
            contact_email: $this->context['contact']['email'],
        );
    }

    public function render()
    {

        return <<<'HTML'
            <svg class="animate-spin h-8 w-8 text-primary" xmlns="http://www.w3.org/2000/svg"
                    fill="none" viewBox="0 0 24 24">
                <circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor"
                        stroke-width="4"></circle>
                <path class="opacity-75" fill="currentColor"
                        d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
            </svg>    
        HTML;
    }
}

Function Calls

None

Variables

None

Stats

MD5 105bb834774665465b0fb51b21af4e57
Eval Count 0
Decode Time 102 ms