位置:
.\app\models
代码如下:
<?php
use Illuminate\Database\Eloquent\SoftDeletingTrait;
class ELog extends \Eloquent {
protected $fillable = [];
protected $connection = 'mysqlxxx1';//此处可以通过函数获取然后赋值吗?我试了一下,不行呢
protected $table = 'elogs';
protected $dates = ['deleted_at'];
}
4 个回复
dozhan
赞同来自:
xlimit
赞同来自:
dozhan
赞同来自:
我也觉得这个方法或许可以,怎么弄呢??
setConnection(string $name)?????
xlimit
赞同来自:
这个配置你根据需要改一下,
mysql2这个名字随意,只要不和别的键冲突。
方法1
例如有一个用户模型
方法2
方法3