fix: add bidder assigned number to showcars table

This commit is contained in:
2026-05-01 12:20:10 -04:00
parent 7c88db310d
commit 81dbf11592
+2
View File
@@ -19,6 +19,7 @@
<table class="table table-vcenter card-table">
<thead>
<tr>
<th>Bidder #</th>
<th>Make</th>
<th>Model</th>
<th>Year</th>
@@ -28,6 +29,7 @@
<tbody>
@foreach($vehicles as $vehicle)
<tr>
<td>{{ $vehicle->vehicleOwner->bidder_assigned_number ?? 'N/A' }}</td>
<td>{{ $vehicle->make }}</td>
<td>{{ $vehicle->model }}</td>
<td>{{ $vehicle->year }}</td>