Current File : /home/inlingua/www/crm.vprotectindia.com/resources/views/api_customer_cancle_txn.blade.php |
@extends('layouts.user_guestapp')
@section('content')
<div class="container">
<div class="row text-center">
<div class="col-md-10">
<div class="card">
<h2 style="padding-top:20px;">Payment Cancelled !</h2>
<div class="card-body">
<table style="width:100%; padding-top:20px;">
<tr>
<td><th>Name: </th></td><td> {{ $response['billing_name'] }}</td></tr>
<td><th>Mobile: </th></td><td> {{ $response['delivery_tel'] }}</td> </tr>
<td><th>Email: </th></td><td> {{ $response['billing_email'] }}</td></tr>
<td><th>Order Status: </th></td><td> {{ $response['order_status'] }}</td></tr>
<td><th>Tracking Id: </th> </td><td>{{ $response['tracking_id'] }}</td></tr>
<td><th>Amount: </th></td><td> {{ $response['amount'] }}</td></tr>
</table>
<div style="padding-top:30px;">
<button style="text-align:center;" class="btn btn-primary" onclick="sendMessage()">Go To Dashboard</button>
</div>
</div>
<script>
function sendMessage() {
window.ReactNativeWebView.postMessage('Payment Completed');
}
</script>
</div>
</div>
</div>
</div>
@endsection