rewrite: payment

This commit is contained in:
tokumeikoi
2021-04-28 17:56:08 +09:00
parent 58b27cdd50
commit 22ee741200
15 changed files with 607 additions and 162 deletions

View File

@ -2,6 +2,7 @@
namespace App\Console\Commands;
use App\Services\PaymentService;
use Illuminate\Console\Command;
class Test extends Command
@ -37,5 +38,7 @@ class Test extends Command
*/
public function handle()
{
$paymentService = new PaymentService('MGate');
var_dump($paymentService->form());
}
}