feat: update itemlist table columns to display estimated value and minimum bid

This commit is contained in:
2026-05-01 14:04:20 -04:00
parent a4f26e9006
commit 5c1b855283
+4 -2
View File
@@ -22,7 +22,8 @@
<tr> <tr>
<th>#</th> <th>#</th>
<th>Description</th> <th>Description</th>
<th>Category</th> <th>Estimated Value</th>
<th>Minimum Bid</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@@ -30,7 +31,8 @@
<tr> <tr>
<td>{{ $item->item_assigned_num }}</td> <td>{{ $item->item_assigned_num }}</td>
<td>{{ $item->item_desc }}</td> <td>{{ $item->item_desc }}</td>
<td>{{ $item->category->cat_name ?? 'N/A' }}</td> <td>${{ number_format($item->item_est_value, 2) }}</td>
<td>${{ number_format($item->item_min_bid, 2) }}</td>
</tr> </tr>
@endforeach @endforeach
</tbody> </tbody>