承接 lucasgiovanny/filament-inline-translate-field 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

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

Latest Version on Packagist Total Downloads

Create a beautiful key-value field to allow users to enter all possible language values for a field on the same page

image

Installation

  1. You can install the package via composer:
composer require lucasgiovanny/filament-inline-translate-field
  1. Configure you model, as defined on spatie/laravel-translatable documentation:
  • Add the Spatie\Translatable\HasTranslations trait to the model that is going to use this field.
  • Next, you should create a public property $translatable which 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'];
}
  1. 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
  • 点击次数: 3
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 5
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-02-24