Skip to main content
You are currently viewing the documentation for Filament 3.x, which is a previous version of Filament.Looking for the current stable version? Visit the 5.x documentation.

Overview

Images can be easily displayed within your infolist:
The entry must contain the path to the image, relative to the root directory of its storage disk, or an absolute URL to it.

Managing the image disk

By default, the public disk will be used to retrieve images. You may pass a custom disk name to the disk() method:

Private images

Filament can generate temporary URLs to render private images, you may set the visibility() to private:

Customizing the size

You may customize the image size by passing a width() and height(), or both with size():

Square image

You may display the image using a 1:1 aspect ratio:

Circular image

You may make the image fully rounded, which is useful for rendering avatars:

Adding a default image URL

You can display a placeholder image if one doesn’t exist yet, by passing a URL to the defaultImageUrl() method:

Stacking images

You may display multiple images as a stack of overlapping images by using stacked():

Customizing the stacked ring width

The default ring width is 3, but you may customize it to be from 0 to 8:

Customizing the stacked overlap

The default overlap is 4, but you may customize it to be from 0 to 8:

Setting a limit

You may limit the maximum number of images you want to display by passing limit():

Showing the remaining images count

When you set a limit you may also display the count of remaining images by passing limitedRemainingText().

Showing the limited remaining text separately

By default, limitedRemainingText() will display the count of remaining images as a number stacked on the other images. If you prefer to show the count as a number after the images, you may use the isSeparate: true parameter:

Customizing the limited remaining text size

By default, the size of the remaining text is sm. You can customize this to be xs, md or lg using the size parameter:

Custom attributes

You may customize the extra HTML attributes of the image using extraImgAttributes():

Prevent file existence checks

When the infolist is loaded, it will automatically detect whether the images exist. This is all done on the backend. When using remote storage with many images, this can be time-consuming. You can use the checkFileExistence(false) method to disable this feature: