F
Filament6mo ago
jack5m

How to make image in center

Hi, I'm new to Filament. I have a question that how to make image in center of infoList. Here is my code.
public static function infolist(Infolist $infolist): Infolist
{
return $infolist->schema([
ImageEntry::make('image')
->width('500px')
->height('500px')
->label('')
->extraAttributes([
'loading' => 'lazy',
'class' => 'justify-center'
]),
Section::make('body')
->schema([
TextEntry::make('name')->alignCenter(),
TextEntry::make('price'),
])
]);
}
public static function infolist(Infolist $infolist): Infolist
{
return $infolist->schema([
ImageEntry::make('image')
->width('500px')
->height('500px')
->label('')
->extraAttributes([
'loading' => 'lazy',
'class' => 'justify-center'
]),
Section::make('body')
->schema([
TextEntry::make('name')->alignCenter(),
TextEntry::make('price'),
])
]);
}
No description
3 Replies
jack5m
jack5m6mo ago
<:depressed_tofu:1095811612973207612>
DrByte
DrByte6mo ago
I think if you wrap the Image in a Section it will get centered.
jack5m
jack5m6mo ago
thank you, it worked for me