Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/inventory.corals.io/Corals/modules/Payment/Common/routes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/inventory.corals.io/Corals/modules/Payment/Common/routes/web.php
<?php

Route::group(['prefix' => 'payments'], function () {
    Route::get('settings', 'PaymentsController@settings');
    Route::post('settings', 'PaymentsController@saveSettings');
});


Route::group(['prefix' => 'my-invoice', 'middleware' => ['signed']], function () {
    Route::get('{invoice}', 'InvoicesController@publicInvoice')
        ->name('publicInvoice');
});

Route::group(['prefix' => 'invoice/payments'], function () {
    Route::get('success/{invoice}', 'InvoicePaymentController@success')
        ->name('successPublicInvoicePayment')
        ->middleware('signed');

    Route::get('{invoice}/pay', 'InvoicePaymentController@publicInvoicePayment')
        ->name('publicInvoicePayment');

    Route::get('{invoice}/download', 'InvoicePaymentController@download');
    Route::post('{invoice}/do-pay', 'InvoicePaymentController@doPay');
    Route::get('gateway-payment/{gateway}/{invoice}', 'InvoicePaymentController@getGatewayPayment');
    Route::get('gateway-payment-token/{gateway}/{invoice}', 'InvoicePaymentController@gatewayPaymentToken');
    Route::get('gateway-check-payment-token/{gateway}', 'InvoicePaymentController@gatewayCheckPaymentToken');
});


Route::get('my-invoices', 'InvoicesController@myInvoices');
Route::post('invoices/bulk-action', 'InvoicesController@bulkAction');
Route::resource('invoices', 'InvoicesController');
Route::get('invoices/{invoice}/download', 'InvoicesController@download');
Route::post('invoices/{invoice}/send-invoice', 'InvoicesController@sendInvoice');
Route::post('webhooks/{gateway?}', 'WebhooksController');
Route::post('currencies/bulk-action', 'CurrenciesController@bulkAction');
Route::resource('currencies', 'CurrenciesController');

Route::group(['prefix' => 'tax'], function () {
    Route::resource('tax-classes', 'TaxClassesController');
    Route::resource('tax-classes.taxes', 'TaxesController');
});

Route::post('transactions/{transaction}/reverse', 'TransactionsController@reversePayout');
Route::post('transactions/bulk-action', 'TransactionsController@bulkAction');
Route::resource('transactions', 'TransactionsController');
Route::get('transactions/payments/gateway-payment/{gateway}/{transaction?}', 'TransactionPaymentController@getGatewayTransactionPayment');
Route::get('transactions/{transaction}/edit-status', 'TransactionsController@editTransactionStatus');
Route::put('transactions/{transaction}/status', 'TransactionsController@updateTransactionStatus');


Route::group(['prefix' => 'webhook-calls'], function () {
    Route::get('/', 'WebhooksController@webhookCalls');
    Route::post('{webhookCall}/process', 'WebhooksController@Process');
    Route::post('bulk-action', 'WebhooksController@bulkAction');
});




Spamworldpro Mini