tambah function call center

This commit is contained in:
Nur Izzati Zulkifli
2023-12-18 17:05:01 +08:00
parent 0a4bb2f024
commit 029863a845
6 changed files with 423 additions and 0 deletions
+12
View File
@@ -828,3 +828,15 @@ $router->group(['prefix'=>'kelantanpay'], function () use ($router){
$router->get('gadai/customer',['uses'=>'KelantanPayController@index']);
$router->post('payment/gadai',['uses'=>'KelantanPayController@postPayment']);
});
$router->group(['prefix'=>'arcc'], function () use ($router){
//ARCC API
$router->get('datagadai/aktif/{kodcaw}',['uses'=>'CallCenterController@datagadai']);
$router->get('cawangan',['uses'=>'CallCenterController@showAllCawangans']);
$router->post('insertdatagadai/aktif/{kodcaw}',['uses'=>'CallCenterController@insertdatagadai']);
$router->get('getbatchnotis',['uses'=>'CallCenterController@getbatchnotis']);
$router->get('senarainotisperingatan',['uses'=>'CallCenterController@senarainotisperingatan']);
$router->get('getcawnotis/{notisid}',['uses'=>'CallCenterController@getcawnotis']);
$router->get('getcawnotisbycaw',['uses'=>'CallCenterController@getcawnotisbycaw']);
});