With the latest Laravel 10.40 release, I get following error in my Layout classes: Call to undefined method App\Nova\Flexible\Layouts\BannerLayout::preventsAccessingMissingAttributes() It seems that the class `Whitecube\NovaFlexibleContent\Layouts\Layout.php` should implement this method, just like it's present on the Model classes. ` /** * Determine if accessing missing attributes is disabled. * * @return bool */ public static function preventsAccessingMissingAttributes() { return static::$modelsShouldPreventAccessingMissingAttributes; }`