44 lines
2.1 KiB
PHP
44 lines
2.1 KiB
PHP
@extends('layout.main')
|
|
@section('content')
|
|
<div class="main-content">
|
|
<section class="section">
|
|
<div class="col-md-12">
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<h2>History Refund</h2>
|
|
</div>
|
|
<div class="card-body p-0">
|
|
<div class="table-responsive table-invoice">
|
|
<table class="table table-striped">
|
|
<tr>
|
|
<th>Order ID</th>
|
|
<th>Customer</th>
|
|
<th>Seller</th>
|
|
<th>Total</th>
|
|
<th>Due Date</th>
|
|
<th>Status</th>
|
|
<th>Action</th>
|
|
</tr>
|
|
@foreach ($history_refund as $HistoryRefund)
|
|
<tr>
|
|
<td class="font-weight-600">{{ $HistoryRefund['orderId'] }}</a></td>
|
|
<td class="font-weight-600">{{ $HistoryRefund['customer'] }}</td>
|
|
<td class="font-weight-600">{{ $HistoryRefund['seller'] }}</td>
|
|
<td class="font-weight-600">{{ $HistoryRefund['total'] }}</td>
|
|
<td>{{ $HistoryRefund['date'] }}</td>
|
|
<td>
|
|
<div class="badge badge-danger">{{ $HistoryRefund['status'] }}</div>
|
|
</td>
|
|
<td>
|
|
<a href="/detail_refund" class="btn btn-primary">Detail</a>
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|