CCAvanue in Laravel

.env Route::get('ccavanue', [Crudcontroller::class, 'ccavanue']); Route::get('ccavanue-success', [Crudcontroller::class, 'ccResponse'])->name('cc_response'); Crudcontroller.php function ccavanue(Request $request){ $input = $request->all(); $input['amount'] = 100; $input['order_id'] = "123XSDDD456"; $input['currency'] = "INR"; $input['redirect_url'] = route('cc_response'); $input['cancel_url'] = route('cc_response'); $input['language']…

0 Comments

cc avanue integration with php

composer require kishanio/ccavenue OR # Login to ccavanue account and goto resources / web integrated kit option. # Click download integration kit. # Extract zip file and go to CUSTOM_CHECKOUT_FORM_KIT…

0 Comments