I have an issue that my commention sidebar (notification) is still appearing even I use disableSidebar(true) and hideSubscribers(true). Is there a way to hide the notification sidebar? I use this comment component in the livewire component
TaskInfolist.php
...
public function commentSection(Schema $schema): Schema
{
return $schema
->record($this->task)
->components([
Section::make()
->columns(1)
->components([
CommentsEntry::make('comments')
->extraAttributes([
'style' => ''
])
->mentionables(User::all())
->disableSidebar(true)
->hideSubscribers(true)
])
]);
}
...
task-infolist.blade.php
...
<div class="lg:col-span-2">
{{ $this->commentSection }}
</div>
...