|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /proc/self/cwd/resources/views/ |
Upload File : |
@extends('master')
@section('content')
<form method="post" action="{{asset('proceed-to-payment')}}">
@csrf
<div class="main-wrapper scrollspy-container">
<div class="breadcrumb-wrapper">
<div class="container">
<h1 class="page-title">Payment Status</h1>
<div class="row">
<div class="col-xs-12 col-sm-8">
<ol class="breadcrumb">
<li><a href="#">Home</a></li>
<li class="active">Payment process completed</li>
</ol>
</div>
@include('includes.breadcrum')
</div>
</div>
</div>
<div class="equal-content-sidebar-wrapper detail-page-wrapper">
<div class="equal-content-sidebar-by-gridLex right-sidebar">
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3">
<div style="text-align: center; margin-top:20px;margin-top:20px;">
@if (!empty($billingData))
@if ($billingData->payment_status=='Credit')
<h1><i class="fa fa-check-circle-o fa-3x text-success"></i></h1>
<h4>
<table class="table table-bordered">
<tr>
<td>
Payment ID : {{$billingData->payment_request_id}}
</td>
</tr>
<tr>
<td>
Transaction ID : {{$billingData->transaction_id}}
</td>
</tr>
<tr>
<td>
Your payment of <i class="fa fa-inr"></i> {{$billingData->total_amount}} was successfully completed.
</td>
</tr>
<tr>
<td>
<a class="btn btn-primary btn-lg" href="{{asset('')}}">Continue Shopping</a>
</td>
</tr>
</table>
</h4>
@else
<h1><i class="fa fa-remove fa-3x text-danger"></i></h1>
<h4>
<table class="table table-bordered">
<tr>
<td>
Payment ID : {{$billingData->payment_request_id}}
</td>
</tr>
<tr>
<td>
Your payment of <i class="fa fa-inr"></i> {{$billingData->total_amount}} was failed.
</td>
</tr>
<tr>
<td>
<a class="btn btn-primary btn-lg" href="{{asset('')}}">Continue Shopping</a>
</td>
</tr>
</table>
</h4>
@endif
@endif
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</form>
@endsection
@push('footer-script')
@endpush