如果您已经在使用,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