Convert helpers
This commit is contained in:
parent
f14e20b22a
commit
b128a81aca
@ -25,7 +25,9 @@ class CheckoutBidderSelectList
|
||||
{
|
||||
public static function CheckoutBidderShowNumbers()
|
||||
{
|
||||
$checkout_bidder_num_results = Checkout::with('bidders')
|
||||
$checkout_bidder_num_results = Checkout::with(['bidders' => function ($q) {
|
||||
$q->orderBy('bidder_assigned_number', 'asc');
|
||||
}])
|
||||
->orderBy('bidder_assigned_number')
|
||||
->get();
|
||||
$checkout_bidder_num = '<option disabled selected hidden value="">choose...</option>';
|
||||
|
Loading…
Reference in New Issue
Block a user