I'm sorry my issue messege is not well but 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. The version that I use is
"kirschbaum-development/commentions": "^0.7.7",
Below is my code:
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
...
{{ $this->commentSection }}
...

I'm sorry my issue messege is not well but 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. The version that I use is
"kirschbaum-development/commentions": "^0.7.7",
Below is my code:
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
...