Stacked Image Column
CommunityDisplay multiple images as a stack in your Filament tables.
Author:
Kenneth Sese
Package health
BetaAutomated checks of this plugin's Composer package
13 checks
-
Failed:
Current Laravel version supported
—
The newest Laravel line the package co-installs with is
10.0, which is end-of-life. View details on Plumb -
Passed:
Current PHP version supported
—
Constraint
^8.0supports current PHP8.5. - Skipped: Current Symfony version supported
- Passed: Abandoned or archived — No consulted source marks the package abandoned (packagist, github).
- Failed: Commit and release recency — Inactive: last commit 1061 days ago; last release 1061 days ago. View details on Plumb
-
Passed:
composer.lock not committed by library
—
composer.lockis absent from the released dist archive. - Passed: Dist archive is lean
- Failed: GitHub Actions pinned to SHA — View details on Plumb
- Passed: Open security advisories
- Failed: Dependabot PR responsiveness — Stale Dependabot PRs: oldest general PR is 1042 days old. View details on Plumb
- Warning: Dependabot or Renovate configured — Updater does not cover the JavaScript ecosystem, which has a committed lockfile.
-
Failed:
Dependency update cooldown configured
—
No cooldown configured in
.github/dependabot.yml. View details on Plumb - Passed: Provides a security policy
filament/
namespace. Review the source and install at your own risk. Found
malware or an unresolved security issue the author won't
address?
Report it
.
Documentation
- Screenshots
- Installation
- Usage
- Testing
- Changelog
- Contributing
- Security Vulnerabilities
- Credits
- Other Filament Plugins
- License
Stacked Image Column allows you to display multiple images as a stack in your Filament tables.
#Screenshots


#Installation
You can install the package via composer:
composer require archilex/filament-stacked-image-column
Optionally, you can publish the views using
php artisan vendor:publish --tag="filament-stacked-image-column-views"
#Usage
Normally you will use Stacked Image Column to show a relationship of images. The name of the relationship comes first, followed by a period, followed by the name of the column to display:
use Archilex\StackedImageColumn\Columns\StackedImageColumn;
return $table
->columns([
StackedImageColumn::make('orderItems.image'),
]);
#Using a separator
Instead of using a relationship, you may use a separated string by passing the separator into separator():
StackedImageColumn::make('product_images')
->separator(',')
#Customizing the images
As StackedImageColumn extends Filament's ImageColumn, you have access to most of the same methods:
StackedImageColumn::make('images')
->circular()
->width(20)
#Setting a limit
You may set a limit to the number of images you want to display by passing limit():
StackedImageColumn::make('orderItems.image')
->circular()
->limit(3)
#Showing the remaining images count
When you set a limit you may also display the count of remaining images by passing showRemaining().
StackedImageColumn::make('orderItems.image')
->circular()
->limit(3)
->showRemaining()
By default, showRemaining() 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 showRemainingAfterStack(). You may also set the text size by using remainingTextSize('xs');
#Customizing the ring width
The default ring width is ring-3 but you may customize the ring width to be either 0, 1, 2, or 4 which correspond to tailwinds ring-widths: ring-0, ring-1, ring-2, and ring-4 respectively.
StackedImageColumn::make('users.avatar')
->circular()
->ring(3)
#Customizing the overlap
The default overlap is -space-x-1 but you may customize the overlap to be either 0, 1, 2, 3, or 4 which correspond to tailwinds space-x options: space-x-0, -space-x-1, -space-x-2, -space-x-3, and -space-x-4 respectively.
StackedImageColumn::make('users.avatar')
->circular()
->overlap(3)
#Testing
composer test
#Changelog
Please see CHANGELOG for more information on what has changed recently.
#Contributing
Please see CONTRIBUTING for details.
#Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
#Credits
#Other Filament Plugins
Check out my other Filament Plugins:
- Filter Sets: Save your filters, search query, column order, and column search queries into easily accessible filter sets
- Toggle Icon Column: Display a toggleable icon in your Filament table.
#License
The MIT License (MIT). Please see License File for more information.
The author
Kenneth Sese has been working in software development for more than 10 years. He is driven by a passion to help organizations that serve developing communities to utilize technology to fulfill their missions. He is currently a developer at Padmission building software that is helping end homelessness for families across the United States. He is also the author of Advanced Tables, Toggle Icon Column, and Stacked Image Column.
From the same author
Advanced Tables (formerly Filter Sets)
Supercharge your tables with powerful features like user-customizable views, quick filters, multi-column sorting, advanced table searching, convenient view management, and more. Compatible with Resource Panel Tables, Relation Managers, Table Widgets, and Table Builder!
Author:
Kenneth Sese
Toggle Icon Column
Combine Filament's interactive Toggle Column with its Icon Column to give users another way to interact with their tables.
Author:
Kenneth Sese
Featured Plugins
A selection of plugins curated by the Filament team
Blueprint
Filament Blueprint is a premium Laravel Boost extension that helps AI agents produce accurate, detailed implementation plans and security reports for Filament apps.
Filament
Spotlight Pro
Browse your Filament Panel with ease. Filament Spotlight Pro adds a Spotlight/Raycast like Command Palette to your Filament Panel.
Dennis Koch
Custom Dashboards
Let your users build and share their own dashboards with a drag-and-drop interface. Define your data sources in PHP and let them do the rest.
Filament