added full payment refund request api endpoint

This commit is contained in:
ahmedsophyudden
2021-08-21 22:12:29 +08:00
parent 50f2127d42
commit 5ca508507a
-4
View File
@@ -20,10 +20,6 @@ Route::group(['prefix' => 'booking', 'as' => 'booking.', 'namespace' => 'Booking
Route::post('create', 'CreateBookingRefundController@create')->name('create');
});
Route::group(['prefix' => '{id}/refund', 'as' => 'refund.'], function () {
Route::post('{payment_id}create', 'CreateBookingRefundController@create')->name('create');
});
Route::post('{id}/purchase_order/verification', 'ApprovePurchaseOrderController@approve')->name('po.approval');
Route::post('/merge', 'MergeBookingController@merge')->name('merge');