convert receiptpdf
This commit is contained in:
parent
c2b481aa17
commit
b7b19d55a8
@ -22,7 +22,7 @@ class WinningBids extends Model
|
|||||||
|
|
||||||
public function items()
|
public function items()
|
||||||
{
|
{
|
||||||
return $this->hasMany('App\Models\Items', 'winning_item_num', 'iditems');
|
return $this->hasMany('App\Models\Items', 'iditems', 'winning_item_num');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function bidders()
|
public function bidders()
|
||||||
|
@ -84,13 +84,13 @@
|
|||||||
@foreach($checkout_list_results as $checkout_list_result)
|
@foreach($checkout_list_results as $checkout_list_result)
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
{{ $checkout_list_result->items->item_assigned_num }}
|
{{ $checkout_list_result->items('item_assigned_num') }}
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
{{ $checkout_list_result->items->item_desc }}
|
{{ $checkout_list_result->items('item_desc') }}
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
${{ $checkout_list_result->items->winning_cost }}
|
${{ $checkout_list_result->winning_cost }}
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@endforeach
|
@endforeach
|
||||||
|
Loading…
Reference in New Issue
Block a user