Lingadzi House, City Centre, Lilongwe, Malawi
Mon - Fri : 07.30 AM - 16.30 PM
+265 (0)101 771 111
Overview
Overview

You may want to separate your entries into sections, each with a heading and description. To do this, you can use a section component:

use Filament\Infolists\Components\Section;
 
Section::make('Rate limiting')
    ->description('Prevent abuse by limiting the number of requests per period')
    ->schema([
        // ...
    ])

You can also use a section without a header, which just wraps the components in a simple card:

use Filament\Infolists\Components\Section;
 
Section::make()
    ->schema([
        // ...
    ])