schema([ TextInput::make('item_assigned_num') ->label('Item Number'), TextInput::make('item_desc') ->label('Description'), TextInput::make('item_min_bid') ->label('Minimum Bid') ->mask( fn (TextInput\Mask $mask) => $mask->money( prefix: '$', thousandsSeparator: ',', decimalPlaces: 2, isSigned: false ) ), TextInput::make('item_est_value') ->label('Estimated Value') ->mask( fn (TextInput\Mask $mask) => $mask->money( prefix: '$', thousandsSeparator: ',', decimalPlaces: 2, isSigned: false ) ), ]); } public static function table(Table $table): Table { return $table ->columns([ TextColumn::make('item_assigned_num') ->label('Item Number') ->sortable(), TextColumn::make('item_desc') ->label('Description'), TextColumn::make('item_min_bid') ->label('Minimum Bid') ->money('usd', 'true') ->sortable(), TextColumn::make('item_est_value') ->label('Estimated Value') ->money('usd', 'true') ->sortable(), ]) ->filters([ // ]) ->actions([ Tables\Actions\EditAction::make(), ]) ->bulkActions([ Tables\Actions\DeleteBulkAction::make(), ]) ->defaultSort('item_assigned_num'); } public static function getRelations(): array { return [ // ]; } public static function getPages(): array { return [ 'index' => Pages\ListItems::route('/'), 'create' => Pages\CreateItems::route('/create'), 'edit' => Pages\EditItems::route('/{record}/edit'), ]; } }