schema([ // ]); } public static 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([ // ]) ->actions([ Tables\Actions\EditAction::make(), ]) ->bulkActions([ Tables\Actions\DeleteBulkAction::make(), ]); } public static function getRelations(): array { return [ // ]; } public static function getPages(): array { return [ 'index' => Pages\ListCheckouts::route('/'), 'create' => Pages\CreateCheckout::route('/create'), 'edit' => Pages\EditCheckout::route('/{record}/edit'), ]; } }