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 use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Bluepr..

Decoded Output download

<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration
{
    /**
     * Run the migrations.
     */
    public function up(): void
    {
        Schema::table('channel_translations', function (Blueprint $table) {
            $table->dropColumn(['home_page_content', 'footer_content']);
        });
    }

    /**
     * Reverse the migrations.
     */
    public function down(): void
    {
        Schema::table('channel_translations', function (Blueprint $table) {
            $table->text('home_page_content')->nullable()->after('description');
            $table->text('footer_content')->nullable()->after('home_page_content');
        });
    }
};
 ?>

Did this file decode correctly?

Original Code

<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration
{
    /**
     * Run the migrations.
     */
    public function up(): void
    {
        Schema::table('channel_translations', function (Blueprint $table) {
            $table->dropColumn(['home_page_content', 'footer_content']);
        });
    }

    /**
     * Reverse the migrations.
     */
    public function down(): void
    {
        Schema::table('channel_translations', function (Blueprint $table) {
            $table->text('home_page_content')->nullable()->after('description');
            $table->text('footer_content')->nullable()->after('home_page_content');
        });
    }
};

Function Calls

None

Variables

None

Stats

MD5 5351492b503964ec7cc5302d81d1b40c
Eval Count 0
Decode Time 118 ms