This commit is contained in:
Frank John Begornia
2024-12-06 20:51:21 +08:00
parent f88f1251e8
commit 382e68769e
3 changed files with 56 additions and 6 deletions

View File

@@ -200,6 +200,15 @@
<th>Price</th>
<th>Quantity</th>
</tr>
@elseif($item->FormUsed=="number-size-form")
<tr>
<th>Number</th>
<th>Size</th>
<th>Price</th>
<th>Quantity</th>
</tr>
@else
@endif
@@ -325,6 +334,15 @@
<td>{{ $sub_item->Price }}</td>
<td>{{ $sub_item->Quantity }}</td>
</tr>
@elseif($item->FormUsed=="number-size-form")
<tr>
<td>{{ $sub_item->Number }}</td>
<td>{{ $sub_item->Size }}</td>
<td>{{ $sub_item->Price }}</td>
<td>{{ $sub_item->Quantity }}</td>
</tr>
@else
@endif
@endif