progress indicators, bug fixes, after a while

This commit is contained in:
Kwesi Banson
2023-12-13 12:13:47 +00:00
parent ea6d83e5d9
commit bc97f69748
1283 changed files with 1010757 additions and 7379 deletions

View File

@@ -25,6 +25,8 @@ Route::get('/home', 'HomeController@index')->name('home');
Route::get('testemail', 'UtilityController@EmailTest');
Route::get('testmap', 'UtilityController@maptest');
Route::get('login', 'LoginController@getLoginPage');
Route::post('login', 'LoginController@handleLogin');
@@ -48,7 +50,11 @@ Route::group(['middleware' => ['checklogin']], function(){
Route::get('mnos/all', 'NetworkOperatorsController@getMnosJson');
Route::post('mnos/ip_store', 'NetworkOperatorsController@ipStore');
Route::post('mnos/finance_store', 'NetworkOperatorsController@financeStore');
Route::post('mnos/finance_update', 'NetworkOperatorsController@financeUpdate');
Route::get('mnos/get_payment/{id}', 'NetworkOperatorsController@getSinglePayment');
Route::get('mnos/downloadfile/{id}', 'NetworkOperatorsController@getMnoFile');
Route::post('mnos/notes_update', 'NetworkOperatorsController@notesUpdate');
Route::post('mnos/notes_store', 'NetworkOperatorsController@notesStore');
Route::resource('mnos', 'NetworkOperatorsController');
@@ -106,9 +112,23 @@ Route::group(['middleware' => ['checklogin']], function(){
Route::get('infrastructure/revealpassword/{id}', 'ClickInfrastructureController@reveal_password');
Route::post('infrastructure/updateserver', 'ClickInfrastructureController@updateserver');
Route::post('infrastructure/storeserver', 'ClickInfrastructureController@storeserver');
Route::get('infrastructure/all', 'ClickInfrastructureController@getServerListJson');
Route::get('infrastructure/create', 'ClickInfrastructureController@create');
Route::get('infrastructure/server-list', 'ClickInfrastructureController@server_list');
Route::get('infrastructure/editserver-list/{id}', 'ClickInfrastructureController@edit_server');
Route::get('officelocations/download/{id}', 'OfficeLocationsController@getDocument');
Route::post('officelocations/filesupdate', 'OfficeLocationsController@filesUpdate');
Route::post('officelocations/filestore', 'OfficeLocationsController@fileStore');
Route::get('officelocations/createfiles/{id}', 'OfficeLocationsController@createfiles');
Route::get('officelocations/allfiles', 'OfficeLocationsController@getBranchFilesJson');
Route::get('officelocations/editfile/{id}', 'OfficeLocationsController@show_edit_files_form');
Route::get('officelocations/showfiles/{id}', 'OfficeLocationsController@showfiles');
Route::resource('officelocations', 'OfficeLocationsController');
Route::get('infrastructure/domains', 'ClickInfrastructureController@domains');
@@ -121,6 +141,12 @@ Route::group(['middleware' => ['checklogin']], function(){
Route::get('clickapps/shortcodes', 'ClickAppsController@getShortCodes');
Route::resource('clickapps', 'ClickAppsController');
Route::get('clientpaymentreports/all', 'ClientPaymentReportsController@getClientPaymentsJson');
Route::get('clientpaymentreports', 'ClientPaymentReportsController@index');
Route::get('mnopaymentreports/all', 'MnoPaymentsController@getMnoPaymentsJson');
Route::get('mnopaymentreports', 'MnoPaymentsController@index');
Route::resource('marketreport', 'MarketerReportController');
});