|
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 : /var/www/parassaas.edukrypt.in/resources/views/ |
Upload File : |
@extends('master')
@section('content')
<!-- start Main Wrapper -->
<div class="main-wrapper scrollspy-container">
<div class="breadcrumb-wrapper">
<div class="container">
<h1 class="page-title">User History</h1>
<div class="row">
<div class="col-xs-12 col-sm-8">
<ol class="breadcrumb">
<li><a href="#">Home</a></li>
<li class="active">User History</li>
</ol>
</div>
@include('includes.breadcrum')
</div>
</div>
</div>
<div class="equal-content-sidebar-wrapper">
<div class="equal-content-sidebar-by-gridLex">
<div class="container">
<div class="GridLex-grid-noGutter-equalHeight">
<div class="GridLex-col-12_sm-8_xs-12_xss-12">
<div class="content-wrapper pt-20-xs">
<table class="table">
<thead>
<tr>
<th>Si</th>
<th>Payment Id</th>
<th>Transaction Id</th>
<th>Order No</th>
<th>Amount</th>
<th>Grand Total</th>
<th>Discount</th>
<th>Tracking No</th>
<th>Tracking Status</th>
<th>Promocode</th>
<th>Payment Status</th>
<th>Instrument Type</th>
<th>Payment Date</th>
</tr>
</thead>
<tbody>
@if(!empty($billings))
<?php $i=1;?>
@foreach($billings as $billing)
<tr>
<td><?php echo $i;$i++;?></td>
<td>{{$billing->payment_id}}</td>
<td>{{$billing->trans_id}}</td>
<td>{{$billing->order_no}}</td>
<td>{{$billing->amount}}</td>
<td>{{$billing->grandtotal}}</td>
<td>{{$billing->discount}}</td>
<td>{{$billing->tracking_no}}</td>
<td>{{$billing->tracking_status}}</td>
<td>{{$billing->promocode}}</td>
<td>{{$billing->paymentstatus}}</td>
<td>{{$billing->instrument_type}}</td>
<td>{{date("d-m-Y",strtotime($billing->billing_date))}}</td>
</tr>
@endforeach
@endif
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end Main Wrapper -->
@endsection