31 lines
1.0 KiB
PHP
31 lines
1.0 KiB
PHP
@extends('Frontend.layouts.master')
|
|
|
|
@section('section')
|
|
|
|
<!--<div class="container">
|
|
<h1>Payment Details</h1>
|
|
<iframe src="https://secure.ccavenue.com/transaction/transaction.do?command=initiateTransaction&merchant_id=YOUR_MERCHANT_ID&order_id=&amount=" frameborder="0" scrolling="no" style="width:100%;height:600px;"></iframe>
|
|
</div>-->
|
|
<form>
|
|
<div class="form-group col-md-6">
|
|
<label for="tid">Transaction Id</label>
|
|
<input type="text" class="form-control" name="tid" value="{{ uniqid() }}" required>
|
|
</div>
|
|
|
|
<div class="form-group col-md-6">
|
|
<label>Order Id</label>
|
|
<input type="text" class="form-control" name="order_id" value="{{ uniqid() }}" required>
|
|
</div>
|
|
|
|
<div class="form-group col-md-6">
|
|
<label for="city">Amount</label>
|
|
<input type="text" class="form-control" name="amount" value="100" required>
|
|
</div>
|
|
|
|
<!-- <button type="submit" class="btn btn-primary">Checkout</button>-->
|
|
<button type="button" class="btn btn-primary pay">Pay</button>
|
|
|
|
</form>
|
|
|
|
|
|
@endsection |