Infolist columns doesn't works
when i use this inbside the resource :
it's not apply.
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);
} 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.