Skip to content
This repository has been archived by the owner on Aug 11, 2020. It is now read-only.

Commit

Permalink
bug fix route notify
Browse files Browse the repository at this point in the history
  • Loading branch information
fherryfherry committed Oct 1, 2016
1 parent daa3dcf commit 7828988
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Controllers/DokuController.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ function __construct() {
];

}else{
die('the trans_id value is not found');
// die('the trans_id value is not found');
}
}

Expand Down
1 change: 1 addition & 0 deletions src/routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
Route::group(['middleware'=>['\Illuminate\Session\Middleware\StartSession'],'prefix'=>config('dokularavel.PAYMENT_PATH'),'namespace'=>$namespace], function () {
Route::get('/', ['uses'=>'DokuController@index','as'=>'DokuController.index']);
Route::post('check-status', ['uses'=>'DokuController@checkStatus','as'=>'DokuController.checkStatus']);
Route::post('notify/{code}', ['uses'=>'DokuController@notify','as'=>'DokuController.notify']);
Route::get('finish', ['uses'=>'DokuController@finish','as'=>'DokuController.finish']);
Route::post('pay', ['uses'=>'DokuController@pay','as'=>'DokuController.pay']);
Route::get('debug', ['uses'=>'DokuController@debug','as'=>'DokuController.debug']);
Expand Down

0 comments on commit 7828988

Please sign in to comment.