Server IP : 108.163.255.210 / Your IP : 3.143.237.203 Web Server : Apache System : Linux blossom.urlnameserver.com 3.10.0-1160.80.1.el7.x86_64 #1 SMP Tue Nov 8 15:48:59 UTC 2022 x86_64 User : ( 1172) PHP Version : 7.2.34 Disable Function : eval,escapeshellarg,proc_close,proc_get_status,proc_nice,proc_open,symlink,system,pcntl_exec,getrusage,chown,chgp,closelog,openlog,syslog,define_syslog_variables,php_ini_loaded_file,getservbyname,getservbyport,posix_getgid,posix_getgrgid,proc_terminate,pfsockopen,apache_child_terminate,posix_mkfifo,posix_setpgid,posix_setuid,hypot,pg_host,pos,posix_access,posix_getcwd,posix_getservbyname,myshellexec,getpid,posix_getsid,posix_isatty,posix_kill,posix_mknod,posix_setgid,posix_setsid,posix_setuid,posix_times,posix_uname,ps_fill,posix_getpwuid,global,ini_restore,zip_open,zip_read,rar_open,bzopen,bzread,bzwrite,apache_get_modules,apache_get_version,phpversionphpinfo,php_ini_scanned_files,get_current_user,disk_total_space,diskfreespace,leak,imap_list,hypo,filedump,safe_mode,getmygid,apache_getenv,apache_setenv,bzread,bzwrite,bzopen,phpini,higlight_file,dos_conv,get_cwd,er_log,cmd,e_name,vdir,get_dir,only_read,ftok,ftpexec,posix_getpwnam,mysql_list_dbs,disk_free_space,session_save_path,confirm_phpdoc_compiled,zip_entry_rea,php_u,psockopen,crack_opendict,crack_getlastmessage,crack_closedict,crack_check,fpassthru,posix_get_last_error,posix_getlogin,posix_getgroups,posix_strerror,posix_getrlimit,posix_getpgrp,posix_getgrnam,pos,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/unilinki/www/Worldline-PayGateway/routes/ |
Upload File : |
<?php use Illuminate\Support\Facades\Route; use App\Http\Controllers; /* |-------------------------------------------------------------------------- | 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::get('/start', [Controllers\paymentController::class, 'index']);//for fetch Route::post('/pay', [Controllers\paymentController::class, 'payProcess']); Route::post('/checkout', [Controllers\paymentController::class, 'checkout']); Route::post('/start', [Controllers\paymentController::class, 'index'])->name('start');//for create , update //OFFLINE VERIFICATION------------------------------------------------------ Route::get('/offline_verification', function() { return view ('offline_verification'); })->name('offline_verification'); Route::post('/offline_request', [Controllers\paymentController::class, 'offline_request']); //RECONCILIATION ------------------------------------------------------------ Route::get('/reconciliation', function() { return view ('reconciliation'); })->name('reconciliation'); Route::post('/reconcile_request', [Controllers\paymentController::class, 'reconcile_request']); //REFUND ------------------------------------------------------------ Route::get('/refund', function() { return view ('refund'); })->name('refund'); Route::post('/refund_request', [Controllers\paymentController::class, 'refund_request']); //mandate varification ------------------------------------------------------------ Route::get('/mandate_verification', function() { return view ('mandate_verification'); })->name('mandate_verification'); Route::post('/mandate_verification_request', [Controllers\paymentController::class, 'mandate_verification_request']); //transaction scheduling ------------------------------------------------------------ Route::get('/transaction_scheduling', function() { return view ('transaction_scheduling'); })->name('transaction_scheduling'); Route::post('/transaction_scheduling_request', [Controllers\paymentController::class, 'transaction_scheduling_request']); //transaction verification ------------------------------------------------------------ Route::get('/transaction_verification', function() { return view ('transaction_verification'); })->name('transaction_verification'); Route::post('/transaction_verification_request', [Controllers\paymentController::class, 'transaction_verification_request']); //mandate deactivation ------------------- Route::get('/mandate_deactivation', function() { return view ('mandate_deactivation'); })->name('mandate_deactivation'); Route::post('/mandate_deactivation_request', [Controllers\paymentController::class, 'mandate_deactivation_request']); //stop payment ------------------- Route::get('/stop_payment', function() { return view ('stop_payment'); })->name('stop_payment'); Route::post('/stop_payment_request', [Controllers\paymentController::class, 'stop_payment_request']); //admin part Route::get('/admin', function(){ return view ('admin'); })->name('admin'); Route::post('/submit_request', [Controllers\paymentController::class, 'submit_request']); Route::get('/s2s', [Controllers\paymentController::class, 's2s']);