ヤミRoot VoidGate
User / IP
:
216.73.217.162
Host / Server
:
15.235.182.215 / pollibazaar.com
System
:
Linux asia.cbnex.com 5.14.0-611.49.2.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Apr 30 09:05:08 EDT 2026 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
pollibazaar
/
public_html
/
app
/
Services
/
Viewing: DeliveryManWithdrawService.php
<?php namespace App\Services; class DeliveryManWithdrawService { /** * @param object $request * @return array */ public function getDeliveryManWithdrawData(object $request) : array { return [ 'approved' => $request['approved'], 'transaction_note' => $request['note'] ]; } /** * @param object $request * @param object $wallet * @param object $withdraw * @return array[] */ public function getUpdateData(object $request, ?object $wallet, object $withdraw): array { $withdrawData = [ 'approved' => $request['approved'], 'transaction_note' => $request['note'], ]; $walletData = []; $amount = $withdraw['amount'] ?? 0; $totalWithdraw = $wallet ? ($wallet->total_withdraw ?? 0) : 0; $pendingWithdraw = $wallet ? ($wallet->pending_withdraw ?? 0) : 0; $currentBalance = $wallet ? ($wallet->current_balance ?? 0) : 0; if ($request['approved'] == 1) { $walletData['total_withdraw'] = $totalWithdraw + $amount; $walletData['pending_withdraw'] = $pendingWithdraw - $amount; $walletData['current_balance'] = $currentBalance - $amount; } else { $walletData['pending_withdraw'] = $pendingWithdraw - $amount; } return [ 'wallet' => $walletData, 'withdraw' => $withdrawData, ]; } }
Coded With 💗 by
0x6ick