Update codebase
- Fix payable ujrah branch response - Add route and controller function to query for online transaction. for now can query by date - Add route and controller function to get online transaction trail. the endpoint will return the data from 4 interlinked table for online transaction needed to complete phase
This commit is contained in:
+3
-4
@@ -10,7 +10,6 @@
|
||||
| and give it the Closure to call when that URI is requested.
|
||||
|
|
||||
*/
|
||||
|
||||
// $router->get('/', function () use ($router) {
|
||||
// return $router->app->version();
|
||||
// });
|
||||
@@ -18,6 +17,7 @@
|
||||
// return \Illuminate\Support\Str::random(32);
|
||||
// });
|
||||
|
||||
|
||||
$router->group(['namespace' => '\Rap2hpoutre\LaravelLogViewer'], function() use ($router) {
|
||||
$router->get('logs', 'LogViewerController@index');
|
||||
});
|
||||
@@ -260,9 +260,8 @@ $router->group(['prefix'=>'api'], function () use ($router){
|
||||
$router->get('transaction/online/unsuccessful',['uses'=>'TransactionOnlineController@getListUnsuccessful']);
|
||||
$router->put('transaction/online/unsuccesfull/update',['uses'=>'TransactionOnlineController@updateUnsuccessfulTransaction']);
|
||||
$router->put('transaction/online/tagportal',['uses'=>'TransactionOnlineController@updateTagPortal']);
|
||||
|
||||
|
||||
|
||||
$router->get('transaction/online/query',['uses'=>'TransactionOnlineController@getListTransactionOnlineQuery']);
|
||||
$router->get('transaction/online/trail',['uses'=>'TransactionOnlineController@getListTransactionOnlineTrail']);
|
||||
|
||||
//ANSURAN UPAH API
|
||||
$router->get('ansuran/laporan/{kodcaw}',['uses'=>'GadaiController@getLaporanAnsuran']);
|
||||
|
||||
Reference in New Issue
Block a user