feat: show bidder and vehicle details in carshowwinners view

This commit is contained in:
2026-05-01 15:52:54 -04:00
parent 4fdd41e9b8
commit 2512c27904
+12 -2
View File
@@ -20,14 +20,24 @@
<thead> <thead>
<tr> <tr>
<th>Category</th> <th>Category</th>
<th>Winner</th> <th>Place</th>
<th>#</th>
<th>Owner</th>
<th>Year</th>
<th>Make</th>
<th>Model</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@foreach($winners as $winner) @foreach($winners as $winner)
<tr> <tr>
<td>{{ $winner->awardCategory->category_name }}</td> <td>{{ $winner->awardCategory->category_name }}</td>
<td>{{ $winner->awardVehicle->make }} {{ $winner->awardVehicle->model }}</td> <td>{{ $winner->place }}</td>
<td>{{ $winner->awardVehicle->owner }}</td>
<td>{{ $winner->awardVehicle->vehicleOwner->bidder_fname ?? '' }} {{ $winner->awardVehicle->vehicleOwner->bidder_lname ?? '' }}</td>
<td>{{ $winner->awardVehicle->year }}</td>
<td>{{ $winner->awardVehicle->make }}</td>
<td>{{ $winner->awardVehicle->model }}</td>
</tr> </tr>
@endforeach @endforeach
</tbody> </tbody>