Viewing File: /home/ubuntu/efidemo/routes/web.php

<?php

use Illuminate\Support\Facades\Route;

/*
|--------------------------------------------------------------------------
| 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('', function() {
    return redirect()->route('admin.login');
});

Route::controller(Auth\ForgotPasswordController::class)->group( function() {

    Route::get('reset_password', 'reset_password')->name('reset_password');

    Route::post('reset_password_update', 'reset_password_update')->name('reset_password.update');

});

Route::any('demo_callback', 'DemoController@demo_callback')->name('demo_callback');

Route::any('/initiate_order', 'DemoController@initiateOrder');

Route::any('testJob', 'HomeController@testJob');

Route::any('import', 'EfiPayController@import');

Route::any('messages', 'ApplicationController@messages_index');

Route::any('connecx_payin_hash', 'ApplicationController@connecx_payin_hash');

Route::any('connecx_payment_status_hash', 'ApplicationController@connecx_payment_status_hash');

Route::any('connecx_payment_reference_hash', 'ApplicationController@connecx_payment_reference_hash');



Route::post('sample_file', 'ApplicationController@sample_file')->name('sample_file');

Route::any('s2s_card_signature', 'ApplicationController@s2s_card_signature');

Route::any('capture_sale_signature', 'ApplicationController@capture_sale_signature');

Route::any('get_order_id', 'ApplicationController@get_order_id');

Route::any('s2s_apm_signature', 'ApplicationController@s2s_apm_signature');

// Coriunder Routes

Route::any('corinder_sign', 'ApplicationController@corinder_sign')->name('corinder_sign');

Route::any('c_sale_request', 'ApplicationController@c_sale_request')->name('c_sale_request');

Route::get('efipay_demo', 'ApplicationController@efipay_demo')->name('efipay_demo');

Route::post('efipay_demo', 'ApplicationController@efipay_demo_process')->name('efipay_demo_process');

Route::any('efipay/response', 'ApplicationController@coriunder_response')->name('coriunder_response');

Route::any('read_message', 'ApplicationController@read_message');


Back to Directory File Manager