跳到主要内容
版本:Next

Card

Overview

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

use Filament\Forms\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\Forms\Components\Card;

Card::make()
->schema([
// ...
])
->columns(2)