updated column in orders module

This commit is contained in:
franknstayn
2019-11-18 18:08:30 +08:00
parent e480e7bcb6
commit f42a900e3d
5 changed files with 12 additions and 8 deletions

View File

@@ -9,7 +9,7 @@
<img src="{{ asset('/bower_components/admin-lte/dist/img/user2-160x160.jpg') }}" class="img-circle" alt="User Image">
</div>
<div class="pull-left info">
<p>Frank John Begornia</p>
<p> {{ Auth::user()->name }} </p>
<!-- Status -->
<a href="#">Administrator</a>
</div>

View File

@@ -26,6 +26,7 @@
<table id="orders_table" class="table table-bordered table-hover">
<thead>
<tr>
<th>Store</th>
<th>Invoice #</th>
<th>Currency</th>
<th>Tax</th>
@@ -38,6 +39,7 @@
<tbody>
@foreach($array_payment_details as $pd_row)
<tr>
<td>{{ $pd_row->StoreName }}</td>
<td>{{ $pd_row->InvoiceNumber }}</td>
<td>{{ $pd_row->Currency }}</td>
<td>{{ $pd_row->Tax }}</td>