公告: 旧版文档请移步 -> http://v2.laravel-filament.cn/docs

Languages

Version

Theme

Infolist Builder - Layout

Card

Overview

The card component may be used to render the infolists components inside a card:

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

Using grid columns within a card

You may use the columns() method to easily create a grid within the card:

use Filament\Infolists\Components\Card;
 
Card::make()
->schema([
// ...
])
->columns(2)
Edit on GitHub

Still need help? Join our Discord community or open a GitHub discussion