PHPackages                             filafly/filament-identity-column - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. filafly/filament-identity-column

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

filafly/filament-identity-column
================================

A column for Filament Tables to which combines an avatar, name and description.

v1.1.0(2mo ago)72.8k↑76.7%4MITPHPPHP ^8.2

Since Sep 26Pushed 2mo agoCompare

[ Source](https://github.com/filafly/filament-identity-column)[ Packagist](https://packagist.org/packages/filafly/filament-identity-column)[ Docs](https://filafly.com/plugins/filament-identity-column)[ RSS](/packages/filafly-filament-identity-column/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (4)Dependencies (4)Versions (5)Used By (0)

 [![Banner](https://camo.githubusercontent.com/22ff8ab14b3b926335710ba922d5e371574b12dd2af6176ad012091b6e1b2fd6/68747470733a2f2f66696c61666c792e636f6d2f696d616765732f66696c61666c792d6964656e746974792d636f6c756d6e2e6a7067)](https://camo.githubusercontent.com/22ff8ab14b3b926335710ba922d5e371574b12dd2af6176ad012091b6e1b2fd6/68747470733a2f2f66696c61666c792e636f6d2f696d616765732f66696c61666c792d6964656e746974792d636f6c756d6e2e6a7067)

A reusable identity column for Filament Tables and Infolists. Basic Usage
-----------

[](#basic-usage)

```
use Filafly\IdentityColumn\Tables\Columns\IdentityColumn;
use Filafly\IdentityColumn\Infolists\Components\IdentityEntry;

// Table column
IdentityColumn::make('name')
    ->avatar('avatar_url')
    ->primary('name')
    ->primaryUrl(fn ($record) => route('users.show', $record))
    ->secondary('email')
    ->secondaryUrl('profile_url', openInNewTab: true)
    ->size('md');

// Infolist entry
IdentityEntry::make('name')
    ->avatar('avatar_url')
    ->primary('name')
    ->secondary('email')
    ->size('md');
```

Requirements
------------

[](#requirements)

- PHP 8.2+
- Filament 4.x or 5.x
- Laravel (package auto-discovery enabled)

Installation
------------

[](#installation)

```
composer require filafly/filament-identity-column
php artisan filament:assets
```

Avatar
------

[](#avatar)

- `avatar(string|Closure $value)`
    - Absolute URL, root-relative path, attribute path, or Closure.
- `avatarShape('square'|'rounded'|'circular'|Closure)`
- `squareAvatar()` / `roundedAvatar()` / `circularAvatar()`
- `avatarSize(string|Closure $cssSize)`
    - CSS size (e.g., `28px`, `2rem`).

Primary
-------

[](#primary)

- `primary(string|Closure $value)`
    - Falls back to the column/entry state when not set.
- `primaryUrl(string|Closure|null $url, bool|Closure $openInNewTab = false)`
    - Suppressed if a wrapper `->url()` is set on the column/entry.

Secondary
---------

[](#secondary)

- `secondary(string|Closure $value)`
- `secondaryUrl(string|Closure|null $url, bool|Closure $openInNewTab = false)`
    - Suppressed if a wrapper `->url()` is set on the column/entry.

Sizing
------

[](#sizing)

- `size('sm'|'md'|'lg'|TextSize|Closure|null)` (inherited from Filament)
- Defaults: text `md`; avatar size derives from visual size when `avatarSize()` is not set.
- Text scale by size: `sm` (0.875/0.75rem), `md` (1/0.75rem), `lg` (1.125/0.875rem).

Notes
-----

[](#notes)

- Strings passed to methods are resolved from the record via `data_get()` when they look like attribute paths.

License
-------

[](#license)

MIT

###  Health Score

47

—

FairBetter than 94% of packages

Maintenance84

Actively maintained with recent releases

Popularity30

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 82.4% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~50 days

Total

4

Last Release

81d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/e8e5241b3b450ab4c64dd7ad1a868a00c3eef90731d0a6024385ec4246d4b3dd?d=identicon)[filafly](/maintainers/filafly)

---

Top Contributors

[![nolannordlund](https://avatars.githubusercontent.com/u/11064008?v=4)](https://github.com/nolannordlund "nolannordlund (14 commits)")[![CharlieEtienne](https://avatars.githubusercontent.com/u/9772943?v=4)](https://github.com/CharlieEtienne "CharlieEtienne (3 commits)")

---

Tags

laravelidentitytablesfilamentcolumn

###  Code Quality

TestsPHPUnit

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/filafly-filament-identity-column/health.svg)

```
[![Health](https://phpackages.com/badges/filafly-filament-identity-column/health.svg)](https://phpackages.com/packages/filafly-filament-identity-column)
```

###  Alternatives

[pboivin/filament-peek

Full-screen page preview modal for Filament

253319.6k12](/packages/pboivin-filament-peek)[dotswan/filament-map-picker

Easily pick and retrieve geo-coordinates using a map-based interface in your Filament applications.

124139.3k2](/packages/dotswan-filament-map-picker)[creagia/filament-code-field

A Filamentphp input field to edit or view code data.

58289.3k3](/packages/creagia-filament-code-field)[jibaymcs/filament-tour

Bring the power of DriverJs to your Filament panels and start a tour !

12247.8k](/packages/jibaymcs-filament-tour)[aymanalhattami/filament-context-menu

context menu (right click menu) for filament

9838.0k](/packages/aymanalhattami-filament-context-menu)[schmeits/filament-character-counter

This is a Filament character counter TextField and Textarea form field for Filament v4 and v5

33184.7k6](/packages/schmeits-filament-character-counter)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
