migrate wallets and create function for regenerates invoice

This commit is contained in:
edmondlang
2023-03-11 16:48:54 +08:00
parent 9f8ba5163c
commit eea8708b76
69 changed files with 3526 additions and 66 deletions
@@ -0,0 +1,14 @@
<?php
namespace App\Http\Controllers\Wallets;
use App\Classes\Modules\Wallets\ControllersLogic\UpdateStatusWalletLogic;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
class UpdateStatusWalletController
{
public function updateStatus(Request $request, UpdateStatusWalletLogic $logic): JsonResponse {
return $logic->execute($request);
}
}