render(); return response()->json([ 'code' => $gateway['code'], 'name' => $gateway['name'], 'description' => $gateway['description'], 'redirect' => false, 'html' => $html, ]); } public function confirm(Invoice $invoice, ConfirmRequest $request) { $result = event(new InvoicePaid($invoice, $request)); return response()->json($result[0]); } }