Merge branch 'master' of https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0 into task/EXC-353

# Conflicts:
#	app/Models/Company.php
This commit is contained in:
glovetleong
2021-10-25 21:43:55 +08:00
39 changed files with 617 additions and 179 deletions
@@ -2,14 +2,14 @@
namespace App\Http\Controllers\Wallets;
use App\Classes\Modules\Wallets\ControllersLogic\CreateWalletLogic;
use App\Classes\Modules\Wallets\ControllersLogic\WithdrawWalletLogic;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
class WithdrawWalletController
{
public function withdraw(Request $request, CreateWalletLogic $logic): JsonResponse {
public function withdraw(Request $request, WithdrawWalletLogic $logic): JsonResponse {
return $logic->execute($request);
}
}