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 in Filament Blueprint: security audits! Scan your app for security misconfigurations with a plan to fix each one.
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)