lucasgiovanny/filament-inline-translate-field
最新稳定版本:v1.0.1
Composer 安装命令:
composer require lucasgiovanny/filament-inline-translate-field
包简介
Create a beautiful key-value field to allow users to enter all possible language values for a field on the same page
README 文档
README
Create a beautiful key-value field to allow users to enter all possible language values for a field on the same page
Installation
- You can install the package via composer:
composer require lucasgiovanny/filament-inline-translate-field
- Configure you model, as defined on spatie/laravel-translatable documentation:
- Add the
Spatie\Translatable\HasTranslationstrait to the model that is going to use this field. - Next, you should create a public property
$translatablewhich holds an array with all the names of attributes you wish to make translatable. - Finally, you should make sure that all translatable attributes are set to the json-datatype in your database. If your database doesn't support json-columns, use text.
use Illuminate\Database\Eloquent\Model; use Spatie\Translatable\HasTranslations; class Activity extends Model { use HasTranslations; public $translatable = ['name']; }
- Publish the configuration file to set the available languages:
php artisan vendor:publish --tag="filament-inline-translate-field-config"
return [ 'available_locales' => [ 'en' => 'English', 'fr' => 'French', 'es' => 'Spanish', ], ];
Optionally, you can publish the translation files:
php artisan vendor:publish --tag="filament-inline-translate-field-translations
Usage
use LucasGiovanny\FilamentInlineTranslateField\Forms\Components\Fields\InlineTranslateField; return $form ->schema([ InlineTranslateField::make('name'), ]);
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 54
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-02-24
