forked from TFMM/silent-auction
feat: update itemlist table columns to display estimated value and minimum bid
This commit is contained in:
@@ -22,7 +22,8 @@
|
||||
<tr>
|
||||
<th>#</th>
|
||||
<th>Description</th>
|
||||
<th>Category</th>
|
||||
<th>Estimated Value</th>
|
||||
<th>Minimum Bid</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@@ -30,7 +31,8 @@
|
||||
<tr>
|
||||
<td>{{ $item->item_assigned_num }}</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>
|
||||
@endforeach
|
||||
</tbody>
|
||||
|
||||
Reference in New Issue
Block a user