This hook works, the text file has the right values. But the panel does not update the values. Why?
'page.update:after' => function($newPage){
if($newPage->template() == 'course'){
$maxParticipants = $newPage->instructors()->toUsers()->count() * 5;
$newPage = $newPage->update(['participantcount' => $maxParticipants])->save();
}
},