Active eCommerce All Addons (Untouched)

roysuraj

New member
Jul 2, 2022
21
5
3
copy and past this code in public_html/routes/offline_payment.php

PHP:
<?php

use App\Http\Controllers\CustomerPackageController;
use App\Http\Controllers\WalletController;
use App\Http\Controllers\CustomerPackagePaymentController;
use App\Http\Controllers\ManualPaymentMethodController;
use App\Http\Controllers\SellerPackageController;
use App\Http\Controllers\SellerPackagePaymentController;

/*
|--------------------------------------------------------------------------
| Offline Payment Routes
|--------------------------------------------------------------------------
|
| Here is where you can register admin routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/

//Admin
Route::group(['prefix' =>'admin', 'middleware' => ['auth', 'admin']], function(){
    Route::resource('manual_payment_methods', ManualPaymentMethodController::class);
    Route::get('/manual_payment_methods/destroy/{id}', [ManualPaymentMethodController::class, 'destroy'])->name('manual_payment_methods.destroy');
    Route::get('/offline-wallet-recharge-requests', [WalletController::class, 'offline_recharge_request'])->name('offline_wallet_recharge_request.index');
    Route::post('/offline-wallet-recharge/approved', [WalletController::class, 'updateApproved'])->name('offline_recharge_request.approved');

    // Seller Package purchase request
    Route::get('/offline-seller-package-payment-requests', [SellerPackagePaymentController::class, 'offline_payment_request'])->name('offline_seller_package_payment_request.index');
    Route::post('/offline-seller-package-payment/approved', [SellerPackagePaymentController::class, 'offline_payment_approval'])->name('offline_seller_package_payment.approved');

    // customer package purchase request
    Route::get('/offline-customer-package-payment-requests', [CustomerPackagePaymentController::class, 'offline_payment_request'])->name('offline_customer_package_payment_request.index');
    Route::post('/offline-customer-package-payment/approved', [CustomerPackagePaymentController::class, 'offline_payment_approval'])->name('offline_customer_package_payment.approved');

});

//FrontEnd
Route::post('/purchase_history/make_payment', [ManualPaymentMethodController::class, 'show_payment_modal'])->name('checkout.make_payment');
Route::post('/purchase_history/make_payment/submit', [ManualPaymentMethodController::class, 'submit_offline_payment'])->name('purchase_history.make_payment');
Route::post('/offline-wallet-recharge-modal', [ManualPaymentMethodController::class, 'offline_recharge_modal'])->name('offline_wallet_recharge_modal');

Route::group(['middleware' => ['user', 'verified']], function(){
    Route::post('/offline-wallet-recharge', [WalletController::class, 'offline_recharge'])->name('wallet_recharge.make_payment');

});

// customer package purchase
Route::post('/offline-customer-package-purchase-modal', [ManualPaymentMethodController::class, 'offline_customer_package_purchase_modal'])->name('offline_customer_package_purchase_modal');
Route::post('/offline-customer-package-paymnet', [CustomerPackageController::class, 'purchase_package_offline'])->name('customer_package.make_offline_payment');


Route::group(['prefix' => 'seller', 'middleware' => ['seller', 'verified', 'user'], 'as' => 'seller.'], function () {
    // Seller Package purchase
    Route::post('/offline-seller-package-purchase-modal', [ManualPaymentMethodController::class, 'offline_seller_package_purchase_modal'])->name('offline_seller_package_purchase_modal');
    Route::post('/offline-seller-package-paymnet',[SellerPackageController::class, 'purchase_package_offline'])->name('make_offline_payment');
});
thank u thanks a lot
 

hackrockx

New member
Jul 19, 2022
6
1
3
yeumangden.com
copy and past this code in public_html/routes/offline_payment.php

PHP:
<?php

use App\Http\Controllers\CustomerPackageController;
use App\Http\Controllers\WalletController;
use App\Http\Controllers\CustomerPackagePaymentController;
use App\Http\Controllers\ManualPaymentMethodController;
use App\Http\Controllers\SellerPackageController;
use App\Http\Controllers\SellerPackagePaymentController;

/*
|--------------------------------------------------------------------------
| Offline Payment Routes
|--------------------------------------------------------------------------
|
| Here is where you can register admin routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/

//Admin
Route::group(['prefix' =>'admin', 'middleware' => ['auth', 'admin']], function(){
    Route::resource('manual_payment_methods', ManualPaymentMethodController::class);
    Route::get('/manual_payment_methods/destroy/{id}', [ManualPaymentMethodController::class, 'destroy'])->name('manual_payment_methods.destroy');
    Route::get('/offline-wallet-recharge-requests', [WalletController::class, 'offline_recharge_request'])->name('offline_wallet_recharge_request.index');
    Route::post('/offline-wallet-recharge/approved', [WalletController::class, 'updateApproved'])->name('offline_recharge_request.approved');

    // Seller Package purchase request
    Route::get('/offline-seller-package-payment-requests', [SellerPackagePaymentController::class, 'offline_payment_request'])->name('offline_seller_package_payment_request.index');
    Route::post('/offline-seller-package-payment/approved', [SellerPackagePaymentController::class, 'offline_payment_approval'])->name('offline_seller_package_payment.approved');

    // customer package purchase request
    Route::get('/offline-customer-package-payment-requests', [CustomerPackagePaymentController::class, 'offline_payment_request'])->name('offline_customer_package_payment_request.index');
    Route::post('/offline-customer-package-payment/approved', [CustomerPackagePaymentController::class, 'offline_payment_approval'])->name('offline_customer_package_payment.approved');

});

//FrontEnd
Route::post('/purchase_history/make_payment', [ManualPaymentMethodController::class, 'show_payment_modal'])->name('checkout.make_payment');
Route::post('/purchase_history/make_payment/submit', [ManualPaymentMethodController::class, 'submit_offline_payment'])->name('purchase_history.make_payment');
Route::post('/offline-wallet-recharge-modal', [ManualPaymentMethodController::class, 'offline_recharge_modal'])->name('offline_wallet_recharge_modal');

Route::group(['middleware' => ['user', 'verified']], function(){
    Route::post('/offline-wallet-recharge', [WalletController::class, 'offline_recharge'])->name('wallet_recharge.make_payment');

});

// customer package purchase
Route::post('/offline-customer-package-purchase-modal', [ManualPaymentMethodController::class, 'offline_customer_package_purchase_modal'])->name('offline_customer_package_purchase_modal');
Route::post('/offline-customer-package-paymnet', [CustomerPackageController::class, 'purchase_package_offline'])->name('customer_package.make_offline_payment');


Route::group(['prefix' => 'seller', 'middleware' => ['seller', 'verified', 'user'], 'as' => 'seller.'], function () {
    // Seller Package purchase
    Route::post('/offline-seller-package-purchase-modal', [ManualPaymentMethodController::class, 'offline_seller_package_purchase_modal'])->name('offline_seller_package_purchase_modal');
    Route::post('/offline-seller-package-paymnet',[SellerPackageController::class, 'purchase_package_offline'])->name('make_offline_payment');
});
Thanks bro
 

hackrockx

New member
Jul 19, 2022
6
1
3
yeumangden.com
a pleasure (y)

Premium Packages for Sellers Errors, how to fix it!​

When I create packages for the seller, try to subscribe to the package, it gives an error, payment method not available! Particularly for the Free package, there is an error of 500
 

Attachments

  • 01.jpg
    01.jpg
    155.2 KB · Views: 17
  • 02.jpg
    02.jpg
    117.4 KB · Views: 17

widchy95

Member
Oct 3, 2019
51
23
8

Premium Packages for Sellers Errors, how to fix it!​

When I create packages for the seller, try to subscribe to the package, it gives an error, payment method not available! Particularly for the Free package, there is an error of 500
I think you should setup payment method even if its free before you can purchase package , so try to add online/offline payment method and then go back
 

Shivendra

Member
Jan 26, 2021
137
4
18
I think you should setup payment method even if its free before you can purchase package , so try to add online/offline payment method and then go back
Symfony\Component\Routing\Exception\RouteNotFoundException
Route [seller.offline_seller_package_purchase_modal] not defined. (View:
 
May 9, 2022
101
15
18
Please I want help in solving this problem?
When logging in from the control panel, Reports/Seller Products Sale
This error appears
Please help in solving this problem
thank you
 

Attachments

  • FireShot Capture.png
    FireShot Capture.png
    52.2 KB · Views: 2

widchy95

Member
Oct 3, 2019
51
23
8
check if you have the last version.
if not, update it coz mine works
check also if you have approved a seller already, some page can crash when they cant find specifical queries
 
  • Like
Reactions: mahmoudabdokaka

sakhmart

Well-known member
Null Master
Trusted Uploader
Banned User
May 26, 2022
313
264
70
Pakistan
check if you have the last version.
if not, update it coz mine works
check also if you have approved a seller already, some page can crash when they cant find specifical queries

widchy95 please check can you load payment into wallet from webapp and android app with offline and online payment methods? please because my wallet isnot working​

 

widchy95

Member
Oct 3, 2019
51
23
8

widchy95 please check can you load payment into wallet from webapp and android app with offline and online payment methods? please because my wallet isnot working​

Mine is working fine , I configured stripe and paypal as online payments , let me try offline payment recharge and let you know how it goes
 

widchy95

Member
Oct 3, 2019
51
23
8
I have the v6.1.4 version and tested online and offline payment and everything worked, I just fix an error in offline payment addon beside that all the tests went successfully
 

sakhmart

Well-known member
Null Master
Trusted Uploader
Banned User
May 26, 2022
313
264
70
Pakistan
I have the v6.1.4 version and tested online and offline payment and everything worked, I just fix an error in offline payment addon beside that all the tests went successfully
i am using 6.1.4 as well ???
 
May 9, 2022
101
15
18
check if you have the last version.
if not, update it coz mine works
check also if you have approved a seller already, some page can crash when they cant find specifical queries

Active eCommerce V 6.1.4 and Seller Subscription System V 1.6 ,​

approved a seller already​

Can you help solve this problem?
 

Forum statistics

Threads
69,206
Messages
908,333
Members
236,836
Latest member
torinouq

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu