ToggleColumn::make('users.id') ->label('Volgen') ->onIcon('gmdi-star') ->offIcon('gmdi-star-border') ->onColor('success') ->beforeStateUpdated(function ($record, $state, SeriesService $service) { $state == true ? $service->follow($record) : $service->unfollow($record); }) ->afterStateUpdated(function ($record, $state) { // Runs after the state is saved to the database. }),