Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<div> <x-slot:title> Project Variables | Coolify </x-slot> <div class=..

Decoded Output download

<?  <div>
    <x-slot:title>
        Project Variables | Coolify
    </x-slot>
    <div class="flex gap-2">
        <h1>Projects</h1>
    </div>
    <div class="subtitle">List of your projects.</div>
    <div class="flex flex-col gap-2">
        @forelse ($projects as $project)
            <a class="box group"
                href="{{ route('shared-variables.project.show', ['project_uuid' => data_get($project, 'uuid')]) }}">
                <div class="flex flex-col justify-center mx-6 ">
                    <div class="box-title">{{ $project->name }}</div>
                    <div class="box-description ">
                        {{ $project->description }}</div>
                </div>
            </a>
        @empty
            <div>
                <div>No project found.</div>
            </div>
        @endforelse
    </div>
</div>
 ?>

Did this file decode correctly?

Original Code

<div>
    <x-slot:title>
        Project Variables | Coolify
    </x-slot>
    <div class="flex gap-2">
        <h1>Projects</h1>
    </div>
    <div class="subtitle">List of your projects.</div>
    <div class="flex flex-col gap-2">
        @forelse ($projects as $project)
            <a class="box group"
                href="{{ route('shared-variables.project.show', ['project_uuid' => data_get($project, 'uuid')]) }}">
                <div class="flex flex-col justify-center mx-6 ">
                    <div class="box-title">{{ $project->name }}</div>
                    <div class="box-description ">
                        {{ $project->description }}</div>
                </div>
            </a>
        @empty
            <div>
                <div>No project found.</div>
            </div>
        @endforelse
    </div>
</div>

Function Calls

None

Variables

None

Stats

MD5 f855251072733ea1061064facab201f6
Eval Count 0
Decode Time 112 ms