PHPackages                             edrisaturay/filament-utilities - 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. edrisaturay/filament-utilities

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

edrisaturay/filament-utilities
==============================

Reusable functions, fields, filters and columns for Filament.

150PHP

Since Jan 28Pushed 5mo agoCompare

[ Source](https://github.com/edrisaturay/filament-utilities)[ Packagist](https://packagist.org/packages/edrisaturay/filament-utilities)[ RSS](/packages/edrisaturay-filament-utilities/feed)WikiDiscussions main Synced 3w ago

READMEChangelogDependenciesVersions (1)Used By (0)

Filament Utilities Package
==========================

[](#filament-utilities-package)

[![Latest Version on Packagist](https://camo.githubusercontent.com/69889138291da4d2eeb68317887578ee95f8d15736e8a6e1c2b7ede1e1e81e4f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f65647269736174757261792f66696c616d656e742d7574696c69746965732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/edrisaturay/filament-utilities)[![Total Downloads](https://camo.githubusercontent.com/7df50c8bc6ec9edfefba84b05945b643be1464f1c76a55b9437910ef12b7105c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f65647269736174757261792f66696c616d656e742d7574696c69746965732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/edrisaturay/filament-utilities)[![GitHub](https://camo.githubusercontent.com/59b85931d3fcb27957d27b0dff8e8a705e5b527501f983c590848d8b82de15bf/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f65647269736174757261792f66696c616d656e742d7574696c69746965732e7376673f7374796c653d666c61742d737175617265)](https://github.com/edrisaturay/filament-utilities/blob/main/LICENSE.md)

A collection of reusable components, traits, and helper functions for Filament v5 applications. This package ensures UI consistency and reduces boilerplate across multiple panels.

Features
--------

[](#features)

### Reusable Fields (`Fields/ReusableFields.php`)

[](#reusable-fields-fieldsreusablefieldsphp)

Standardized form fields with pre-configured validation and constraints:

- `ReusableFields::name()`: Standardized name input.
- `ReusableFields::email()`: Standardized email input with validation.

### Reusable Columns (`Columns/ReusableColumns.php`)

[](#reusable-columns-columnsreusablecolumnsphp)

Standardized table columns for consistent data display:

- `ReusableColumns::createdAt()`: Standardized `created_at` column with date-time formatting and toggleable visibility.
- `ReusableColumns::updatedAt()`: Standardized `updated_at` column.

### Traits &amp; Concerns

[](#traits--concerns)

- **`CanAccessPanel`**: An abstract trait that enforces the implementation of `canAccessPanel(Panel $panel): bool` on models (typically the `User` model), facilitating standardized access control.

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

[](#installation)

Add the package to your `composer.json` (usually handled via the root project in this starter kit):

```
composer require edrisaturay/filament-utilities
```

The service provider is automatically registered via Laravel's package discovery.

Usage Examples
--------------

[](#usage-examples)

### Using Reusable Fields in a Form

[](#using-reusable-fields-in-a-form)

```
use EdrisaTuray\FilamentUtilities\Fields\ReusableFields;

public static function form(Form $form): Form
{
    return $form
        ->schema([
            ReusableFields::name(),
            ReusableFields::email(),
            // ...
        ]);
}
```

### Using Reusable Columns in a Table

[](#using-reusable-columns-in-a-table)

```
use EdrisaTuray\FilamentUtilities\Columns\ReusableColumns;

public static function table(Table $table): Table
{
    return $table
        ->columns([
            // ...
            ReusableColumns::createdAt(),
            ReusableColumns::updatedAt(),
        ]);
}
```

### Implementing Panel Access

[](#implementing-panel-access)

```
use EdrisaTuray\FilamentUtilities\Concerns\CanAccessPanel;

class User extends Authenticatable
{
    use CanAccessPanel;

    public function canAccessPanel(Panel $panel): bool
    {
        return true; // Your custom logic
    }
}
```

License
-------

[](#license)

The MIT License (MIT).

###  Health Score

20

—

LowBetter than 13% of packages

Maintenance50

Moderate activity, may be stable

Popularity10

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity12

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/95329b757401f7d19594b60cf196fef575ef365863207549dd320a28d03172e7?d=identicon)[edrisaa.turay](/maintainers/edrisaa.turay)

---

Top Contributors

[![edrisaturay](https://avatars.githubusercontent.com/u/21174548?v=4)](https://github.com/edrisaturay "edrisaturay (6 commits)")

### Embed Badge

![Health badge](/badges/edrisaturay-filament-utilities/health.svg)

```
[![Health](https://phpackages.com/badges/edrisaturay-filament-utilities/health.svg)](https://phpackages.com/packages/edrisaturay-filament-utilities)
```

###  Alternatives

[ashallendesign/favicon-fetcher

A Laravel package for fetching website's favicons.

190293.5k3](/packages/ashallendesign-favicon-fetcher)[laragear/preload

Effortlessly make a Preload script for your Laravel application.

123397.6k](/packages/laragear-preload)

PHPackages © 2026

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