forked from TFMM/silent-auction
feat: install and scaffold Tablar theme #6
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user