JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "payment.php"
Full Path: /home/u735268861/domains/palsarh.in/public_html/routes/payment.php
File size: 1.04 KB
MIME-type: text/x-php
Charset: utf-8
<?php
use App\Http\Controllers\OfflinePaymentController;
use App\Http\Controllers\PaymentController;
use Illuminate\Support\Facades\Route;
Route::controller(PaymentController::class)->middleware('auth')->group(function () {
Route::get('payment', 'index')->name('payment');
Route::get('payment/show_payment_gateway_by_ajax/{identifier}', 'show_payment_gateway_by_ajax')->name('payment.show_payment_gateway_by_ajax');
Route::get('payment/success/{identifier?}', 'payment_success')->name('payment.success');
Route::get('payment/create/{identifier}', 'payment_create')->name('payment.create');
// razor pay
Route::post('payment/{identifier}/order', 'payment_razorpay')->name('razorpay.order');
// paytm pay
Route::get('payment/make/paytm/order', 'make_paytm_order')->name('make.paytm.order');
Route::get('payment/make/{identifier}/status', 'paytm_paymentCallback')->name('payment.status');
});
Route::get('payment/web_redirect_to_pay_fee', [PaymentController::class, 'webRedirectToPayFee'])->name('payment.web_redirect_to_pay_fee');