⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.223
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 :
~
/
proc
/
self
/
root
/
var
/
www
/
ecommerce_pg
/
routes
/
View File Name :
web.php
<?php use Illuminate\Support\Facades\Route; use App\Events\Notify; if(version_compare(PHP_VERSION, '7.2.0', '>=')) { error_reporting(E_ALL ^ E_NOTICE ^ E_WARNING); } /* |-------------------------------------------------------------------------- | Web Routes |-------------------------------------------------------------------------- | | Here is where you can register web routes for your application. These | routes are loaded by the RouteServiceProvider within a group which | contains the "web" middleware group. Now create something great! | */ Route::post('/pi/checkout/pay/process','\App\Http\Controllers\PayInstantController@index'); Route::post('/pi/checkout/cb/callback','\App\Http\Controllers\PayInstantController@callback'); Route::post('/pi/fetchTransactionStatus/{order_id}','\App\Http\Controllers\PayInstantController@fetchTransactionStatus'); Route::get('/pi/payment/fail', function () { return view('payments.PayInstant.failed'); }); Route::get('/pi/payment/success', function () { return view('payments.PayInstant.success'); }); Route::get('/pi/payment/waiting', function () { return view('payments.pending'); }); Route::post('/pg/wl/checkout','\App\Http\Controllers\WorldlineController@index'); Route::post('/pg/wl/callback','\App\Http\Controllers\WorldlineController@callback')->middleware('checkTrespassing'); Route::view('/wl/success','payments/wl/success'); Route::view('/wl/failed','payments/wl/failed'); Route::get('/', function () { return redirect('https://stylezones.in'); });