project-management icon indicating copy to clipboard operation
project-management copied to clipboard

V3 Upgrade

Open mihaisolomon opened this issue 10 months ago • 1 comments

mihaisolomon avatar Apr 30 '24 09:04 mihaisolomon

Saw your issue here: https://github.com/filamentphp/filament/issues/13931

I found that adding an override of the getFormStatePath() to the class using the InteractsWithForms trait resolved the error.

In your case I think you would need to add the following to ViewTicket.php and anywhere else you're implementing that.

/**
     * Overrides the getFormStatePath method to set its access level to public.
     *
     * @return string
     */
    public function getFormStatePath(): string
    {
        return 'form';
    }

crimsonstrife avatar Aug 15 '24 17:08 crimsonstrife