This commit is contained in:
Frank John Begornia
2024-12-06 20:30:56 +08:00
parent 8408423801
commit 2d90d1cdcb
3 changed files with 46 additions and 0 deletions

View File

@@ -114,8 +114,18 @@
<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
@if($array_item[0]->FormUsed=="jersey-and-shorts-form")
@@ -194,6 +204,13 @@
<td>{{ $array_item[0]->Price }}</td>
<td>{{ $array_item[0]->Quantity }}</td>
</tr>
@elseif($array_item[0]->FormUsed=="number-size-form")
<tr>
<td>{{ $array_item[0]->Number }}</td>
<td>{{ $array_item[0]->JerseySize }}</td>
<td>{{ $array_item[0]->Price }}</td>
<td>{{ $array_item[0]->Quantity }}</td>
</tr>
@else