mirror of
https://gitlab.com/uldvstar/exchange-2.0.git
synced 2026-08-19 04:24:16 +00:00
15 lines
412 B
PHP
15 lines
412 B
PHP
<?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);
|
|
}
|
|
} |