Merge branch 'weiken' into 'master'

PO - Make Payment Action

See merge request CIEFWorldwideSdnBhd/exchange-2.0!16
This commit is contained in:
omair saleh
2021-01-05 05:21:16 +00:00
4 changed files with 258 additions and 0 deletions
@@ -0,0 +1,15 @@
<?php
namespace App\Http\Controllers\Transactions;
use App\Classes\Modules\Transactions\ControllersLogic\CreateMakePaymentPOTransactionLogic;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
class CreateMakePaymentPOTransactionController
{
public function create(Request $request, CreateMakePaymentPOTransactionLogic $logic): JsonResponse {
return $logic->execute($request);
}
}