/home/kueuepay/www/resources/installer/src/routes/web.php
<?php

use App\Http\Middleware\Admin\Localization;
use App\Http\Middleware\StartingPoint;
use Illuminate\Support\Facades\Route;
use Project\Installer\Controllers\BaseController;
use Project\Installer\Helpers\DBHelper;

Route::prefix('project/install')->name('project.install.')->withoutMiddleware([StartingPoint::class,Localization::class])->group(function(){
    Route::controller(BaseController::class)->group(function(){
        Route::get('welcome','welcomeView')->name('welcome');
        Route::get('cancel','installationProcessCancel')->name('cancel');

        // Requirements
        Route::get('requirements','requirementsView')->name('requirements');

        // purchase validation area
        Route::get('validation/form','purchaseValidationForm')->name('validation.form');
        Route::post('validation/form/submit','purchaseValidationFormSubmit')->name('validation.form.submit');

        // Database Configuration
        Route::get('database/config','databaseConfigView')->name('database.config');
        Route::post('database/config/submit','databaseConfigSubmit')->name('database.config.submit');

        // Migration
        Route::get('migration/view','migrationView')->name('migration.view');
        Route::post('migration/submit','migrationSubmit')->name('migration.submit');

        // admin setup
        Route::get('admin/account/setting','accountSetup')->name('admin.setup');
        Route::post('admin/account/setting/submit','accountUpdate')->name('admin.setup.submit');

        // Finish 
        Route::get('finish','finish')->name('finish');
    });
});

Route::get('project/install/reset',function(DBHelper $db) {
    $db->updateEnv([
        "PRODUCT_KEY" => "",
    ]);
    sleep(1);
    return redirect()->route('project.install.welcome');
});
Payment System
top

Simple Steps to Complete Your Payment Securely and Efficiently

Making a payment on our website is quick and secure. Start by logging in or creating an account. Select your preferred payment method, input the required details, and review the information. Once you confirm everything is correct, click on the "Submit Payment" button. You’ll receive instant confirmation and can track your payment status through your account dashboard. It’s an easy and secure process.

  • Go to the Payment Section: Access the payment area on our website or app.
  • Choose Your Payment Method: Select your preferred payment option.
  • Enter Payment Details: Provide the necessary payment information.
  • Verify Your Information: Check that all details are correct.
  • Confirm Your Payment: Click "Submit Payment" to complete the transaction.
img