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\Livewire\Project\Database; use Livewire\Component; class Configurat..

Decoded Output download

<?php

namespace App\Livewire\Project\Database;

use Livewire\Component;

class Configuration extends Component
{
    public $database;

    public function mount()
    {
        $project = currentTeam()->load(['projects'])->projects->where('uuid', request()->route('project_uuid'))->first();
        if (! $project) {
            return redirect()->route('dashboard');
        }
        $environment = $project->load(['environments'])->environments->where('name', request()->route('environment_name'))->first()->load(['applications']);
        if (! $environment) {
            return redirect()->route('dashboard');
        }
        $database = $environment->databases()->where('uuid', request()->route('database_uuid'))->first();
        if (! $database) {
            return redirect()->route('dashboard');
        }
        $this->database = $database;
        if (str($this->database->status)->startsWith('running') && is_null($this->database->config_hash)) {
            $this->database->isConfigurationChanged(true);
            $this->dispatch('configurationChanged');
        }
    }

    public function render()
    {
        return view('livewire.project.database.configuration');
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace App\Livewire\Project\Database;

use Livewire\Component;

class Configuration extends Component
{
    public $database;

    public function mount()
    {
        $project = currentTeam()->load(['projects'])->projects->where('uuid', request()->route('project_uuid'))->first();
        if (! $project) {
            return redirect()->route('dashboard');
        }
        $environment = $project->load(['environments'])->environments->where('name', request()->route('environment_name'))->first()->load(['applications']);
        if (! $environment) {
            return redirect()->route('dashboard');
        }
        $database = $environment->databases()->where('uuid', request()->route('database_uuid'))->first();
        if (! $database) {
            return redirect()->route('dashboard');
        }
        $this->database = $database;
        if (str($this->database->status)->startsWith('running') && is_null($this->database->config_hash)) {
            $this->database->isConfigurationChanged(true);
            $this->dispatch('configurationChanged');
        }
    }

    public function render()
    {
        return view('livewire.project.database.configuration');
    }
}

Function Calls

None

Variables

None

Stats

MD5 6b8b4d7c449507c3ba43cf9cb281c772
Eval Count 0
Decode Time 109 ms