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);
}