dev (#1)
All checks were successful
Deploy Production (merchbay.com) / deploy (push) Successful in 2m11s

Co-authored-by: Frank John Begornia <frank.begornia@yahoo.com>
Reviewed-on: #1
This commit was merged in pull request #1.
This commit is contained in:
2025-12-22 15:28:42 +00:00
parent 70496dc874
commit b47e4e8d3c
59 changed files with 2230 additions and 432 deletions

View File

@@ -540,6 +540,13 @@
<td><b>Price</b></td>
<td><b>Quantity</b></td>
</tr>
@elseif($item->FormUsed == 'number-size-form')
<tr>
<td><b>Number</b></td>
<td><b>Size</b></td>
<td><b>Price</b></td>
<td><b>Quantity</b></td>
</tr>
@else
@endif
<!-- table header -->
@@ -666,6 +673,17 @@
<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