labrodev / laravel-translatable
Laravel package providing a reusable trait for multilingual search in Eloquent JSON fields.
Requires
- php: ^8.1 || ^8.2 || ^8.3 || ^8.4
- illuminate/contracts: ^10.0 || ^11.0 || ^12.0
- spatie/laravel-package-tools: ^1.92
Requires (Dev)
- larastan/larastan: ^2.9
- laravel/pint: ^1.0
- nesbot/carbon: ^2.72
- nunomaduro/collision: ^7.8
- orchestra/testbench: ^8.8 || ^9.0 || ^10.0
- pestphp/pest: ^2.20
- pestphp/pest-plugin-arch: ^2.0
- pestphp/pest-plugin-laravel: ^2.0
- phpstan/extension-installer: ^1.1
- phpstan/phpstan: ^1.10
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- spatie/laravel-ray: ^1.26
README
A Laravel package that adds JSON-based multilingual support to your Eloquent models. It provides:
- QueryFieldLocalizer: Utility to localize JSON fields to the current locale.
- SearchQueryBuilder: Trait for case-insensitive, multi-locale JSON field searching.
- LocaleResolver: Default resolver that returns
app.locale
andapp.fallback_locale
.
Installation
Require the package via Composer:
composer require labrodev/laravel-translatable
Optionally, publish the configuration (if you add a config file later):
php artisan vendor:publish --provider="Labrodev\Translatable\TranslatableServiceProvider"
Note: No configuration file is required out of the box—this is here for future customization.
Usage
1. Localizing JSON Fields
QueryFieldLocalizer
helps you build locale-specific JSON paths for query fields:
use Labrodev\Translatable\Utilities\QueryFieldLocalizer; // Assume the `title` column contains JSON: // { "en": "Hello", "es": "Hola" } $localized = QueryFieldLocalizer::translatableField('title'); // On locale `es`, returns: "title->es" // Use in query: $posts = Post::whereRaw("{$localized} = ?", ['Hola'])->get();
2. Multilingual Search on JSON Columns
Add the SearchQueryBuilder
trait to your Eloquent model:
use Illuminate\Database\Eloquent\Model; use Labrodev\Translatable\Base\Traits\SearchQueryBuilder; class Article extends Model { use SearchQueryBuilder; protected $casts = [ 'titles' => 'array', ]; }
Perform a case-insensitive search across all configured locales:
// Searches "manzana" in `titles` JSON for locales [en, es] $results = Article::query() ->where(function ($q) { $this->searchField($q, 'manzana', 'titles'); }) ->get();
Or chain with existing conditions:
$posts = Article::query() ->where('published', true) ->orWhere(function ($q) { $this->searchFieldOr($q, 'orange', 'titles'); }) ->get();
3. Customizing Locales
By default, locales come from app.locale
and app.fallback_locale
. To customize, bind your own LocaleResolver
implementation:
use Labrodev\Translatable\Contracts\LocaleResolver; $this->app->singleton(LocaleResolver::class, function ($app) { return new class implements LocaleResolver { public function all(): array { return ['en', 'fr', 'es']; } }; });
Testing
This package uses Pest with Orchestra Testbench for testing and PHPStan for static analysis. This package uses Pest with Orchestra Testbench for testing and PHPStan for static analysis
-
Install dependencies:
composer install
-
Run static analysis:
composer analyse
-
Run tests:
composer test
Tests cover:
QueryFieldLocalizer::translatableField()
outputs correct JSON path.SearchQueryBuilder
builds proper SQL & bindings for multilingual JSON searches.DefaultLocaleResolverTest
resolve locales array.
Security
If you discover any security-related issues, please email contact@labrodev.com instead of using the issue tracker.
Changelog
Please see CHANGELOG for more information on what has changed recently.
Credits
Contributing
Feel free to open issues or submit pull requests. Check Coding Standards:
- PSR-12
- Strict types enabled
License
MIT © Labro Dev