winning bid mask
This commit is contained in:
parent
24841b3b98
commit
082c110616
@ -43,7 +43,15 @@ class WinningBidsResource extends Resource
|
|||||||
->options(Bidders::all()->pluck('bidder_assigned_number', 'idbidders'))
|
->options(Bidders::all()->pluck('bidder_assigned_number', 'idbidders'))
|
||||||
->searchable(),
|
->searchable(),
|
||||||
TextInput::make('winning_cost')
|
TextInput::make('winning_cost')
|
||||||
->label('Winning Bid'),
|
->label('Winning Bid')
|
||||||
|
->mask(
|
||||||
|
fn (TextInput\Mask $mask) => $mask->money(
|
||||||
|
prefix: '$',
|
||||||
|
thousandsSeparator: ',',
|
||||||
|
decimalPlaces: 2,
|
||||||
|
isSigned: false
|
||||||
|
)
|
||||||
|
),
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user