fixed order details reports

This commit is contained in:
franknstayn
2020-02-29 21:53:10 +08:00
parent baa3502e8c
commit c6303b4a93

View File

@@ -486,6 +486,20 @@
<!-- <th>Price</th> -->
<th>Quantity</th>
</tr>
@elseif($item->FormUsed=="name-size-form")
<tr>
<th>Name</th>
<th>Size</th>
{{-- <th>Price</th> --}}
<th>Quantity</th>
</tr>
@elseif($item->FormUsed=="jersey-and-shorts-quantity-form")
<tr>
<th>Jersey Size</th>
<th>Shorts Size</th>
{{-- <th>Price</th> --}}
<th>Quantity</th>
</tr>
@else
@endif
@@ -539,6 +553,21 @@
<!-- <td>{{ $sub_item->Price }}</td> -->
<td>{{ $sub_item->Quantity }}</td>
</tr>
@elseif($item->FormUsed=="name-size-form")
<tr>
<td>{{ $sub_item->Name }}</td>
<td>{{ $sub_item->Size }}</td>
{{-- <td>{{ $sub_item->Price }}</td> --}}
<td>{{ $sub_item->Quantity }}</td>
</tr>
@elseif($item->FormUsed=="jersey-and-shorts-quantity-form")
<tr>
<td>{{ $sub_item->JerseySize }}</td>
<td>{{ $sub_item->ShortsSize }}</td>
{{-- <td>{{ $sub_item->Price }}</td> --}}
<td>{{ $sub_item->Quantity }}</td>
</tr>
@else
@endif