ok

Mini Shell

Direktori : /home2/selectio/www/limpiar.in.net/install/routes/
Upload File :
Current File : //home2/selectio/www/limpiar.in.net/install/routes/install.php

<?php
/*
|--------------------------------------------------------------------------
| Install Routes
|--------------------------------------------------------------------------
|
| This route is responsible for handling the intallation process
|
|
|
*/

use App\Http\Controllers\InstallController;

Route::controller(InstallController::class)->group(function () {
    Route::get('/', 'step0');
    Route::get('/step1', 'step1')->name('step1');
    Route::get('/step2', 'step2')->name('step2');
    Route::get('/step3/{error?}', 'step3')->name('step3');
    Route::get('/step4', 'step4')->name('step4');
    Route::get('/step5', 'step5')->name('step5');

    Route::post('/database_installation', 'database_installation')->name('install.db');
    Route::get('import_sql', 'import_sql')->name('import_sql');
    Route::post('system_settings', 'system_settings')->name('system_settings');
    Route::post('purchase_code', 'purchase_code')->name('purchase.code');
});


Zerion Mini Shell 1.0