Toggle column issue.

Toggling one record changes other records.

Tables\Columns\ToggleColumn::make('published')
  ->label('Publish')
  ->onColor('success')
  ->alignCenter()
  ->tooltip(fn(News $record) => $record->published 
      ? 'Unpublish' : 'Publish'),
Was this page helpful?