Installer updates

Added probe.php
Added new installer views and controllers
Updated AuthController
Updated Middlewares
Updated Commands for installation process
This commit is contained in:
Manish Verma
2018-08-07 13:45:46 +05:30
parent 1ac0f42a58
commit 22d3bb4036
28 changed files with 1197 additions and 405 deletions

View File

@@ -17,7 +17,7 @@ Route::get('/JavaScript-disabled', [
'as' => 'js-disabled',
'uses' => 'Installer\helpdesk\InstallController@jsDisabled',
]);
Route::get('/step1', [
Route::get('/step2', [
'as' => 'licence',
'uses' => 'Installer\helpdesk\InstallController@licence',
]);
@@ -25,7 +25,7 @@ Route::post('/step1post', [
'as' => 'postlicence',
'uses' => 'Installer\helpdesk\InstallController@licencecheck',
]);
Route::get('/step2', [
Route::get('/step1', [
'as' => 'prerequisites',
'uses' => 'Installer\helpdesk\InstallController@prerequisites',
]);