すでに使用している場合はBackpack
、使用するspatie/laravel-translatable
のが最適なオプションです。Article
以下のようにモデルを作成して、翻訳可能なモードにすることができます。
<?php
namespace App\Models;
use Backpack\CRUD\app\Models\Traits\CrudTrait;
use Illuminate\Database\Eloquent\Model;
use Backpack\CRUD\app\Models\Traits\SpatieTranslatable\HasTranslations; //you need to add
class Article extends Model
{
use CrudTrait;
use HasTranslations; //you need to add
/*
|--------------------------------------------------------------------------
| GLOBAL VARIABLES
|--------------------------------------------------------------------------
*/
protected $table = 'articles';
protected $primaryKey = 'id';
protected $fillable = ['title', 'description'];
protected $translatable = ['title', 'description']; //you need to add