components([ Forms\Components\TextInput::make('bidder_num') ->required() ->maxLength(255), ]); } public function table(Table $table): Table { return $table ->columns([ TextColumn::make('bidders.bidder_assigned_number') ->label('Bidder Number') ->sortable(), TextColumn::make('winnertotal') ->label('Total Amount') ->money('usd', 'true') ->sortable(), TextColumn::make('paymentMethod.pm_name') ->label('Payment Method') ->sortable(), ]) ->filters([ // ]) ->recordActions([ EditAction::make(), DeleteAction::make(), ]) ->toolbarActions([ CreateAction::make(), BulkActionGroup::make([ DeleteBulkAction::make(), ]), ]); } }