Infolist columns doesn't works

when i use this inbside the resource :
    public static function infolist(Infolist $infolist): Infolist
    {
        return $infolist
            ->schema([
                        Infolists\Components\Section::make('1')
                            ->schema([
                                // ...
                            ]),
                        Infolists\Components\Section::make('2')
                            ->schema([
                                // ...
                            ]),
                        Infolists\Components\Section::make('3')
                            ->schema([
                                // ...
                            ]),
            ])
            ->columns(3);
    }


it's not apply.
Was this page helpful?