我在Laravel模型中使用App::getLocal()
在语言之间进行切换。
class Seller extends Model
{
use SoftDeletes;
use Searchable;
protected $table;
public function __construct()
{
$locale = \App::getLocale();
$this->table = $locale."_sellers";
parent::__construct();
}
}
我有两个用于卖家的表格: fr_sellers 和 en_sellers 。我想在此模型中使用TNTSearch。但是,我有两个问题。
1)当我要导入表时。
php artisan scout:import "App\Seller"
它仅导入一张表。
2)如何在搜索中设置相关表?