fixed shortcode edit issues plus refactoring

This commit is contained in:
Kwesi Banson Jnr
2026-02-05 08:38:07 +00:00
parent 063572463b
commit 9cd017fb9a
20 changed files with 655 additions and 117 deletions

View File

@@ -24,9 +24,11 @@ Route::get('/home', 'HomeController@index')->name('home');
*/
// Route::post('testjs', 'UtilityController@showPage');
// Route::get('mno_test', 'UtilityController@processMnoWorldwideFile');
// Route::get('mno_test', 'UtilityController@processMnoWorldwideFile'); sendEmailNotification
Route::get('loggingtest', 'UtilityController@loggingTest');
Route::get('notifytest', 'UtilityController@sendEmailNotification');
Route::get('loadcodes', 'UtilityController@loadShortCodes');
Route::get('migrate_senders', 'UtilityController@migrateSenderids');
Route::get('/testlog', function () {
@@ -169,6 +171,8 @@ Route::group(['middleware' => ['checklogin', 'checkcurrentlylogged']], function(
Route::post('clients/finance_update', 'ClientsController@financeUpdate');
Route::post('clients/shortcode_update', 'ClientsController@shortCodeUpdate');
Route::get('allshortcode/remove_code/{id}', 'ShortCodesController@handle_delete');
Route::get('clients/get_payment/{id}', 'ClientsController@getPayment');
Route::get('clients/get_shortcode/{id}', 'ClientsController@getShortCodeDetails');
Route::get('clients/get_note/{id}', 'ClientsController@getSingleNote');