⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.84
Server IP:
13.127.59.50
Server:
Linux ip-172-31-46-210 5.15.0-1033-aws #37~20.04.1-Ubuntu SMP Fri Mar 17 11:39:30 UTC 2023 x86_64
Server Software:
Apache/2.4.41 (Ubuntu)
PHP Version:
7.4.3-4ubuntu2.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
styleage_v3
/
core
/
app
/
Http
/
Controllers
/
View File Name :
DemoVPAController.php
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; class DemoVPAController extends Controller { public function index(Request $request) { info($request->all()); $neworderId = 'BLSFM'.$request->data_id.'Z'.rand(1000,10000); \DB::table('orders')->where('id', $request->data_id)->update([ 'pi_order_id' => $neworderId ]); $order = \DB::table('orders')->where('id', $request->data_id)->first(); $vpa = ''; $name = 'ARTICLE TECHNOLOGY'; $intentURL = 'upi://pay?pa='.$vpa.'&pn='.$name.'&mc=5816&tr='.$neworderId.'&tn='.$neworderId.'&am=' . $order->total_amount . '&cu=INR&mode=05&orgid=187064&category=01'; $params = []; $params['paymentUrl'] = $intentURL; $params['paymentUrlEncode'] = urlencode($intentURL); $params['transaction_id'] = $neworderId; $params['payment'] = $order; $params['transaction'] = $order; $params['title'] = "Pay Now"; return view('payments.payG.index', compact('params')); } }