Overview
You may want to group entries into a Fieldset. Each fieldset has a label, a border, and a two-column grid by default:Using grid columns within a fieldset
You may use thecolumns() method to customize the grid within the fieldset:
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
🎨 New official Filament themes: Compact density, plus Soft, Sharp and Noir styles.
use Filament\Infolists\Components\Fieldset;
Fieldset::make('Label')
->schema([
// ...
])
columns() method to customize the grid within the fieldset:
use Filament\Infolists\Components\Fieldset;
Fieldset::make('Label')
->schema([
// ...
])
->columns(3)