⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.133
Server IP:
185.119.109.197
Server:
Linux managedhosting.chostar.me 5.15.0-160-generic #170-Ubuntu SMP Wed Oct 1 10:06:56 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.1.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
cleanexg
/
public_html
/
core
/
app
/
View File Name :
PaymentGateway.php
information, true); } public function getAutoDataText() { $text = $this->convertAutoData(); return end($text); } public function showKeyword() { $data = $this->keyword == null ? 'other' : $this->keyword; return $data; } public function showCheckoutLink() { $link = ''; $data = $this->keyword == null ? 'other' : $this->keyword; if ($data == 'paypal') { $link = route('front.paypal.submit'); } else if ($data == 'stripe') { $link = route('front.stripe.submit'); } else if ($data == 'instamojo') { $link = route('front.instamojo.submit'); } else if ($data == 'paytm') { $link = route('front.paytm.submit'); } else if ($data == 'mollie') { $link = route('front.mollie.submit'); } else if ($data == 'paystack') { $link = route('front.paystack.submit'); } else if ($data == 'flutterwave') { $link = route('front.flutterwave.submit'); } else if ($data == 'razorpay') { $link = route('front.razorpay.submit'); } else if ($data == 'mercadopago') { $link = route('front.mercadopago.submit'); } else if ($data == 'yoco') { $link = route('front.yoco.submit'); } else if ($data == 'perfect_money') { $link = route('front.perfect-money.submit'); } else if ($data == 'xendit') { $link = route('front.xendit.submit'); } else if ($data == 'toyyibpay') { $link = route('front.toyyibpay.submit'); } else if ($data == 'paytabs') { $link = route('front.paytabs.submit'); } else if ($data == 'midtrans') { $link = route('front.midtrans.submit'); } else if ($data == 'iyzico') { $link = route('front.iyzico.submit'); } else if ($data == 'phonepe') { $link = route('front.phonepe.submit'); } else if ($data == 'myfatoorah') { $link = route('front.myfatoorah.submit'); } return $link; } public function showForm() { $show = ''; $data = $this->keyword == null ? 'other' : $this->keyword; $values = ['paypal']; if (in_array($data, $values)) { $show = 'no'; } else { $show = 'yes'; } return $show; } }