Forms\Components\TextInput::make('price')
->label('Price (in pence)')
->numeric()
->live()
->suffix(function($record) {
return '£'.number_format($record->price / 100, 2);
}),
Forms\Components\TextInput::make('price')
->label('Price (in pence)')
->numeric()
->live()
->suffix(function($record) {
return '£'.number_format($record->price / 100, 2);
}),