Skip to content

Commit

Permalink
Add blade file
Browse files Browse the repository at this point in the history
  • Loading branch information
turbo124 committed Oct 15, 2024
1 parent 508ba49 commit fd9f7fe
Showing 1 changed file with 33 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<div class="rounded-lg border bg-card text-card-foreground shadow-sm overflow-hidden py-5 bg-white sm:gap-4">

<form action="{{ route('client.payments.response') }}" method="post" id="server-response">
@csrf
<input type="hidden" name="gateway_response">
<input type="hidden" name="payment_hash" value="{{ $payment_hash }}">
<input type="hidden" name="company_gateway_id" value="{{ $gateway->getCompanyGatewayId() }}">
<input type="hidden" name="payment_method_id" value="{{ $payment_method_id }}">
<input type="hidden" name="token">
</form>
@component('portal.ninja2020.components.general.card-element', ['title' => ctrans('texts.payment_type')])
{{ $title }}
@endcomponent

@include('portal.ninja2020.gateways.includes.payment_details')

@component('portal.ninja2020.components.general.card-element-single')
{!! nl2br($instructions) !!}
@endcomponent
</div>
@script
<script>
function submitResponse(response){
document.querySelector(
'input[name="gateway_response"]'
).value = JSON.stringify(response);
document.getElementById('server-response').submit();
}
</script>
@endscript

0 comments on commit fd9f7fe

Please sign in to comment.