PHPackages                             kpebedko22/filament-translation - 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. [Localization &amp; i18n](/categories/localization)
4. /
5. kpebedko22/filament-translation

ActiveLibrary[Localization &amp; i18n](/categories/localization)

kpebedko22/filament-translation
===============================

Package for simply translate filament components.

v1.0.0(2y ago)123MITPHPPHP ^8.0

Since Aug 17Pushed 2y ago1 watchersCompare

[ Source](https://github.com/kpebedko22/filament-translation)[ Packagist](https://packagist.org/packages/kpebedko22/filament-translation)[ RSS](/packages/kpebedko22-filament-translation/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (3)Versions (3)Used By (0)

Filament Translation
====================

[](#filament-translation)

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

[](#installation)

Install package with composer:

```
composer require kpebedko22/filament-translation
```

Publish config:

```
php artisan vendor:publish --tag=filament-translation-config
```

Usage
-----

[](#usage)

Main purpose is using in filament resources and relation managers. To avoid duplicating of calling `label`and `placeholder` methods with passing similar parameters.

```
TextInput::make('title')
    ->label(__('filament/resource/example.common.title'))
    ->placeholder(__('filament/resource/example.placeholder.title')),
```

### Filament Resource

[](#filament-resource)

```
use Filament\Resources\Resource;
use Kpebedko22\FilamentTranslation\Traits\Translatable;

class ExampleResource extends Resource
{
    use Translatable;

    public static function translation(): FilamentTranslation
    {
        return FilamentTranslation::make(static::class, 'example');
    }

    public static function form(Form $form): Form
    {
        return $form
            ->schema(self::trans([
                Forms\Components\TextInput::make('title'),
                Forms\Components\TextInput::make('slug'),
                Forms\Components\Textarea::make('description'),
            ]));
    }

    public static function table(Table $table): Table
    {
        return $table
            ->columns(self::trans([
                Tables\Columns\TextColumn::make('title'),
            ]))
            ->filters(self::trans([
                Tables\Filters\SelectFilter::make('author_id'),
            ]))
            ->actions([])
            ->bulkActions([]);
    }
}
```

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

 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.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

1000d ago

### Community

Maintainers

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

---

Top Contributors

[![kpebedko22](https://avatars.githubusercontent.com/u/36397871?v=4)](https://github.com/kpebedko22 "kpebedko22 (18 commits)")

### Embed Badge

![Health badge](/badges/kpebedko22-filament-translation/health.svg)

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

###  Alternatives

[bezhansalleh/filament-shield

Filament support for `spatie/laravel-permission`.

2.8k2.9M88](/packages/bezhansalleh-filament-shield)[illuminate/translation

The Illuminate Translation package.

6936.4M495](/packages/illuminate-translation)[bezhansalleh/filament-language-switch

Zero config Language Switch(Changer/Localizer) plugin for filamentphp admin

3431.0M16](/packages/bezhansalleh-filament-language-switch)[outhebox/laravel-translations

Manage your Laravel translations with a beautiful UI. Add, edit, delete, import, and export translations with ease.

80687.6k](/packages/outhebox-laravel-translations)[statikbe/laravel-filament-chained-translation-manager

A translation manager tool for Laravel Filament, that makes use of the Laravel Chained Translator.

92108.7k](/packages/statikbe-laravel-filament-chained-translation-manager)[andrewdwallo/filament-companies

A comprehensive Laravel authentication and authorization system designed for Filament, focusing on multi-tenant company management.

34450.0k2](/packages/andrewdwallo-filament-companies)

PHPackages © 2026

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