PNG  IHDR pHYs   OiCCPPhotoshop ICC profilexڝSgTS=BKKoR RB&*! J!QEEȠQ, !{kּ> H3Q5 B.@ $pd!s#~<<+"x M0B\t8K@zB@F&S`cbP-`'{[! eDh;VEX0fK9-0IWfH  0Q){`##xFW<+*x<$9E[-qWW.(I+6aa@.y24x6_-"bbϫp@t~,/;m%h^ uf@Wp~<5j>{-]cK'Xto(hw?G%fIq^D$.Tʳ?D*A, `6B$BB dr`)B(Ͱ*`/@4Qhp.U=pa( Aa!ڈbX#!H$ ɈQ"K5H1RT UH=r9\F;2G1Q= C7F dt1r=6Ыhڏ>C03l0.B8, c˱" VcϱwE 6wB aAHXLXNH $4 7 Q'"K&b21XH,#/{C7$C2'ITFnR#,4H#dk9, +ȅ3![ b@qS(RjJ4e2AURݨT5ZBRQ4u9̓IKhhitݕNWGw Ljg(gwLӋT071oUX**| J&*/Tު UUT^S}FU3S ԖUPSSg;goT?~YYLOCQ_ cx,!k u5&|v*=9C3J3WRf?qtN (~))4L1e\kXHQG6EYAJ'\'GgSSݧ M=:.kDwn^Loy}/TmG X $ <5qo</QC]@Caaᄑ.ȽJtq]zۯ6iܟ4)Y3sCQ? 0k߬~OCOg#/c/Wװwa>>r><72Y_7ȷOo_C#dz%gA[z|!?:eAAA!h쐭!ΑiP~aa~ 'W?pX15wCsDDDޛg1O9-J5*>.j<74?.fYXXIlK9.*6nl {/]py.,:@LN8A*%w% yg"/6шC\*NH*Mz쑼5y$3,幄'L Lݛ:v m2=:1qB!Mggfvˬen/kY- BTZ(*geWf͉9+̳ې7ᒶKW-X潬j9(xoʿܔĹdff-[n ڴ VE/(ۻCɾUUMfeI?m]Nmq#׹=TR+Gw- 6 U#pDy  :v{vg/jBFS[b[O>zG499?rCd&ˮ/~јѡ򗓿m|x31^VwwO| (hSЧc3- cHRMz%u0`:o_F@8N ' p @8N@8}' p '#@8N@8N pQ9p!i~}|6-ӪG` VP.@*j>[ K^<֐Z]@8N'KQ<Q(`s" 'hgpKB`R@Dqj '  'P$a ( `D$Na L?u80e J,K˷NI'0eݷ(NI'؀ 2ipIIKp`:O'`ʤxB8Ѥx Ѥx $ $P6 :vRNb 'p,>NB 'P]-->P T+*^h& p '‰a ‰ (ĵt#u33;Nt̵'ޯ; [3W ~]0KH1q@8]O2]3*̧7# *p>us p _6]/}-4|t'|Smx= DoʾM×M_8!)6lq':l7!|4} '\ne t!=hnLn (~Dn\+‰_4k)0e@OhZ`F `.m1} 'vp{F`ON7Srx 'D˸nV`><;yMx!IS钦OM)Ե٥x 'DSD6bS8!" ODz#R >S8!7ّxEh0m$MIPHi$IvS8IN$I p$O8I,sk&I)$IN$Hi$I^Ah.p$MIN$IR8I·N "IF9Ah0m$MIN$IR8IN$I 3jIU;kO$ɳN$+ q.x* tEXtComment

Viewing File: /home/u456810272/domains/globalsoftech.org.in/public_html/edigital/routes/api.php

<?php

use Illuminate\Support\Facades\Route;
use App\Http\Controllers\API\HomeController;
use App\Http\Controllers\API\User\CartController;

use App\Http\Controllers\API\Auth\LoginController;
use App\Http\Controllers\API\User\PaymentController;

use App\Http\Controllers\API\Auth\RegisterController;
use App\Http\Controllers\API\User\WishlistController;
use App\Http\Controllers\API\User\WithdrawController;
use App\Http\Controllers\API\User\UserProfileController;
use App\Http\Controllers\API\ContactWithAuthorController;
use App\Http\Controllers\API\User\AuthorProfileController;



Route::group(['middleware' => ['demo','XSS']], function () {
    Route::group(['middleware' => ['maintainance']], function () {

        Route::get('/website-setup', [HomeController::class, 'website_setup'])->name('website-setup');

        Route::get('/', [HomeController::class, 'index'])->name('home');
        Route::get('/all-categories', [HomeController::class, 'all_categories'])->name('all-categories');

        Route::get('/best-sell-products', [HomeController::class, 'best_sell_products'])->name('best-sell-products');
        Route::get('/products', [HomeController::class, 'product'])->name('products');
        Route::get('/product/{slug}', [HomeController::class, 'product_detail'])->name('product-detail');

        Route::post('/product-comment', [HomeController::class, 'productComment'])->name('product-comment');

        Route::get('seller-profile/{slug}', [AuthorProfileController::class, 'profile'])->name('author-profile');
        Route::get('seller-portfolio/{slug}', [AuthorProfileController::class, 'portfolio'])->name('author-portfolio');

        Route::post('contact-with-author', [ContactWithAuthorController::class, 'contactWithAuthor'])->name('contact-with-author');


        Route::get('/contact-us', [HomeController::class, 'contactUs'])->name('contact-us');
        Route::post('/send-contact-message', [HomeController::class, 'sendContactMessage'])->name('send-contact-message');

        Route::get('/about-us', [HomeController::class, 'aboutUs'])->name('about-us');
        Route::get('/faq', [HomeController::class, 'faq'])->name('faq');
        Route::get('/terms-and-conditions', [HomeController::class, 'termsAndCondition'])->name('terms-and-conditions');
        Route::get('/privacy-policy', [HomeController::class, 'privacyPolicy'])->name('privacy-policy');



        // auth route
        Route::post('/store-login', [LoginController::class, 'storeLogin'])->name('store-login');

        Route::post('/store-register', [RegisterController::class, 'storeRegister'])->name('store-register');
        Route::post('/resend-register', [RegisterController::class, 'resend_register_code'])->name('resend-register');
        Route::post('/user-verification', [RegisterController::class, 'userVerification'])->name('user-verification');

        Route::post('/send-forget-password', [LoginController::class, 'sendForgetPassword'])->name('send-forget-password');
        Route::post('/store-reset-password', [LoginController::class, 'storeResetPasswordPage'])->name('store-reset-password');
        Route::get('/user-logout', [LoginController::class, 'userLogout'])->name('user.logout');
        // end auth route

        // profile route
        Route::get('dashboard', [UserProfileController::class, 'dashboard'])->name('dashboard');
        Route::get('my-profile', [UserProfileController::class, 'my_profile'])->name('my-profile');

        Route::get('portfolio', [UserProfileController::class, 'portfolio'])->name('portfolio');
        Route::get('download', [UserProfileController::class, 'download'])->name('download');
        Route::post('/product-review', [UserProfileController::class, 'productReview'])->name('product-review');

        Route::post('user-update-profile', [UserProfileController::class, 'updateProfile'])->name('update-profile');

        Route::post('update-password', [UserProfileController::class, 'updatePassword'])->name('update-password');

        Route::get('download-script/{id}', [UserProfileController::class, 'download_script'])->name('download-script');
        Route::get('download-variant/{id}', [UserProfileController::class, 'download_variant'])->name('download-variant');

        Route::get('select-product-type', [UserProfileController::class, 'select_product_type'])->name('select-product-type');
        Route::post('product-create', [UserProfileController::class, 'product_create'])->name('product-create');
        Route::post('product-store', [UserProfileController::class, 'store'])->name('product-store');
        Route::post('store-image-type-product', [UserProfileController::class, 'store_image_type_product'])->name('store-image-type-product');
        Route::get('product-edit/{id}', [UserProfileController::class, 'edit'])->name('product-edit');
        Route::post('product-update/{id}', [UserProfileController::class, 'update'])->name('product-update');
        Route::post('image-product-update/{id}', [UserProfileController::class, 'image_product_update'])->name('image-product-update');
        Route::get('download-existing-file/{file_name}', [UserProfileController::class, 'download_existing_file'])->name('download-existing-file');
        Route::delete('delete-product/{id}', [UserProfileController::class, 'delete_product'])->name('delete-product');

        Route::post('store-product-variant/{product_id}', [UserProfileController::class, 'store_product_variant'])->name('store-product-variant');
        Route::post('update-product-variant/{variant_id}', [UserProfileController::class, 'update_product_variant'])->name('update-product-variant');
        Route::delete('delete-product-variant/{variant_id}', [UserProfileController::class, 'delete_product_variant'])->name('delete-product-variant');




        Route::get('wishlist', [WishlistController::class, 'wishlist'])->name('wishlist');
        Route::post('/add/wishlist/{product_id}', [WishlistController::class, 'add_wishlist'])->name('add-wishlist');
        Route::delete('/delete/wishlist/{id}', [WishlistController::class, 'delete_wishlist'])->name('delete-wishlist');

        Route::get('state-by-country/{id}',[HomeController::class,'stateByCountry'])->name('state-by-country');
        Route::get('city-by-state/{id}',[HomeController::class,'cityByState'])->name('city-by-state');


        // profile route


        //withdraw route start
        Route::get('/withdraw', [WithdrawController::class, 'index'])->name('withdraw');
        Route::get('/get-withdraw-account-info/{id}', [WithdrawController::class, 'getWithDrawAccountInfo']);
        Route::post('/withdraw-store', [WithdrawController::class, 'store'])->name('withdraw.store');
        //withdraw route end

        // add to cart start
        Route::post('add-to-cart', [CartController::class, 'addToCart'])->name('add-to-cart');
        Route::delete('/cart-remove/{cart_id}', [CartController::class, 'cartRemove'])->name('cart-remove');

        Route::get('/mini-cart', [CartController::class, 'miniCart'])->name('mini-cart');

        Route::get('/cart-view', [CartController::class, 'cartView'])->name('cart-view');

        Route::get('/cart-item', [CartController::class, 'cartItem'])->name('cart-item');
        Route::post('/coupon-apply', [CartController::class, 'couponApply'])->name('coupon-apply');

        Route::get('/coupon-remove', [CartController::class, 'couponRemove'])->name('coupon-remove');
        Route::get('/checkout', [CartController::class, 'checkout'])->name('checkout');
        // add to cart end


        //payment start
        Route::get('/payment-info', [PaymentController::class, 'payment_info'])->name('payment-info');

        Route::post('/bank-payment', [PaymentController::class, 'bankPayment'])->name('bank-payment');

        Route::post('/pay-with-stripe', [PaymentController::class, 'payWithStripe'])->name('pay-with-stripe');

        //payment end




    });
});


Back to Directory=ceiIENDB`