aslnbxrz / filament-simple-translation
Filament 4 page to manage Simple Translation keys & translations inline.
2.0.2
2025-09-23 10:16 UTC
Requires
- php: ^8.1
- aslnbxrz/simple-translation: ^1.0 || ^2.0
- filament/filament: ^4.0
- livewire/livewire: ^3.0
- spatie/laravel-package-tools: ^1.92
Requires (Dev)
- laravel/pint: ^1.16
- mockery/mockery: ^1.6
- nunomaduro/collision: ^8.0
- orchestra/testbench: ^10.0
- pestphp/pest: ^4.0
- pestphp/pest-plugin-laravel: ^4.0
Conflicts
README
A lightweight Filament page to manage translations powered by Simple Translation.
✨ Features
- Filament page to browse and edit translations.
- Scope-based filtering (e.g.,
app
,filament
). - Inline editing of translations with language-specific columns.
- Filters for missing/filled translations.
- Supports multiple languages configured via
AppLanguageService
.
📦 Installation
composer require aslnbxrz/filament-simple-translation
Then publish the config
php artisan vendor:publish --tag=filament-simple-translation-config
⚙️ Configuration
return [ 'default_scope' => 'app', 'scopes' => [ 'app', 'filament', // add your scopes here ], ];