diff --git a/app/Filament/Resources/TicketResource/Pages/ViewTicket.php b/app/Filament/Resources/TicketResource/Pages/ViewTicket.php index c1e68c629..2762b009c 100644 --- a/app/Filament/Resources/TicketResource/Pages/ViewTicket.php +++ b/app/Filament/Resources/TicketResource/Pages/ViewTicket.php @@ -238,4 +238,14 @@ public function cancelEditComment(): void $this->form->fill(); $this->selectedCommentId = null; } + + /** + * Overrides the getFormStatePath method to set its access level to public. + * + * @return string + */ + public function getFormStatePath(): string + { + return 'form'; + } }