����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.139.89.220 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/bofirmacademy.com/routes/ |
Upload File : |
<?php use App\Http\Controllers\Common\AffiliateController; use App\Http\Controllers\Common\FollowController; use App\Http\Controllers\Common\WalletController; use App\Http\Controllers\Common\WalletRechargeController; use App\Http\Controllers\Instructor\SaasController; 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::group(['as' => 'affiliate.','prefix'=>'affiliate'], function () { Route::get('become-an-affiliate', [AffiliateController::class, 'becomeAffiliate'])->name('become-an-affiliate'); Route::post('create-affiliate-request', [AffiliateController::class, 'becomeAffiliateApply'])->name('create-affiliate-request'); Route::group(['middleware' => ['affiliate']], function () { Route::get('dashboard', [AffiliateController::class, 'dashboard'])->name('dashboard'); }); Route::get('my-affiliate-list',[AffiliateController::class, 'myAffiliations'])->name('my-affiliate-list'); // Route::get('request-list', [AffiliateController::class, 'requestList'])->name('request-list'); // Route::post('become-affiliate-apply', [AffiliateController::class, 'becomeAffiliateApply'])->name('become-affiliate.apply'); // Route::get('your-application', function(){ // return view('frontend.affiliator.your-application'); // }); // // Route::get('affiliate-add-payment-method', function(){ // return view('frontend.affiliator.affiliate-add-payment-method'); // }); // Suraiya Static for Affiliate Pages End }); Route::group(['middleware' => ['common']],function(){ Route::get('follow', [FollowController::class,'follow'])->name('follow'); Route::get('unfollow', [FollowController::class,'unfollow'])->name('unfollow'); // Route::get('saas-list', [SaasController::class, 'saasList'])->name('saas_panel'); Route::get('saas-plan', [SaasController::class, 'saasPlan'])->name('saas_plan'); Route::get('saas-plan-details/{id}', [SaasController::class, 'saasPlanDetails'])->name('saas_plan_details'); }); Route::group(['as' => 'wallet.','prefix'=>'wallet','middleware' => ['common']], function () { Route::get('/', [WalletController::class, 'index'])->name('/'); Route::get('transaction-history', [WalletController::class, 'transactionHistory'])->name('transaction-history'); Route::get('withdrawal-history', [WalletController::class, 'WithdrawalHistory'])->name('withdrawal-history'); Route::get('wallet-recharge-history', [WalletController::class, 'rechargeHistory'])->name('recharge-history'); Route::post('process-withdraw', [WalletController::class, 'withdrawProcess'])->name('process-withdraw'); Route::get('beneficiary', [WalletController::class, 'myBeneficiary'])->name('my-beneficiary'); Route::get('wallet-recharge/checkout', [WalletRechargeController::class, 'checkout'])->name('wallet_recharge.checkout'); Route::post('wallet-recharge/pay', [WalletRechargeController::class, 'pay'])->name('wallet_recharge.pay'); Route::post('wallet-recharge/razor-pay-payment', [WalletRechargeController::class, 'razorPayPayment'])->name('wallet_recharge.razor_pay_payment'); Route::post('save-beneficiary', [WalletController::class, 'saveBeneficiary'])->name('save.my-beneficiary'); Route::post('status-change-beneficiary/{beneficiary:uuid}', [WalletController::class, 'statusChangeBeneficiary'])->name('beneficiary_status.change'); Route::post('save-paypal', [WalletController::class, 'savePaypal'])->name('save.paypal'); Route::get('download-receipt/{uuid}', [WalletController::class, 'downloadReceipt'])->name('download-receipt'); });