• File: paytm.blade.php
  • Full Path: /home/masbinta/public_html/core/resources/views/front/paytm.blade.php
  • File size: 631 bytes
  • MIME-type: text/html
  • Charset: utf-8
@extends("front.layout")

@section('content')


<center><h1>Please do not refresh this page...</h1></center>
<form method="post" action="{{ $paytm_txn_url }}" name="f1">
    {{ csrf_field()  }}
    <table border="1">
        <tbody>
		<?php
		foreach($paramList as $name => $value) {
			echo '<input type="hidden" name="' . $name .'" value="' . $value . '">';
		}
		?>
        <input type="hidden" name="CHECKSUMHASH" value="<?php echo $checkSum ?>">
        </tbody>
    </table>

</form>

@endsection

@section('script')
<script type="text/javascript">
    document.f1.submit();
</script>
@endsection