@php $auction = $auction ?? []; $readonly = $rulesLocked ?? false; $allowedDefaults = [50, 100, 200]; $allowedRaw = $auction['allowedIncrementsAbove101'] ?? $allowedDefaults; if (! is_array($allowedRaw)) { $allowedRaw = [(int) $allowedRaw]; } $allowedValues = array_values(array_map('intval', $allowedRaw)); while (count($allowedValues) < 3) { $allowedValues[] = $allowedDefaults[count($allowedValues)] ?? 50; } $allowedValues = array_slice($allowedValues, 0, 3); @endphp
Extends or resets the timer when a late bid is placed.
When enabled, the last male and last female player in each category are sold automatically at the calculated average price.
@include('admin.leagues.rules._rules_info_panel', [ 'rows' => [ [ 'label' => 'Applies To', 'value' => 'Last male and last female player in each category', ], [ 'label' => 'Closing Price Formula', 'value' => 'Average of prior sales in the same category + same gender', 'class' => 'is-formula', ], [ 'label' => 'Manual Bidding For Closing Players', 'value' => 'Disabled', 'class' => 'is-disabled', ], ], ])