我是laravel的新手,我正在尝试使用eloquent模型访问DB中的数据。
我有一些表具有相似性,例如表名。
所以我想使用一个模型来访问数据库中的几个表,如下所示,但运气不好。
有没有办法动态设置表名?
如有任何建议或意见,我们将不胜感激。先谢了。
- 型号:**
class ProductLog extends Model
{
public $timestamps = false;
public function __construct($type = null) {
parent::__construct();
$this->setTable($type);
}
}
- 控制器:**
public function index($type, $id) {
$productLog = new ProductLog($type);
$contents = $productLog::all();
return response($contents, 200);
}
- 解决方案对于那些谁遭受同样的问题:**
我能够按照@Mahdi Younesi的建议更改表名。
我可以通过如下方式添加条件
$productLog = new ProductLog;
$productLog->setTable('LogEmail');
$logInstance = $productLog->where('origin_id', $carrier_id)
->where('origin_type', 2);
2条答案
按热度按时间kb5ga3dv1#
以下特性允许在水合期间传递表名。
下面是如何使用它:
在示例上调用方法,如下所示:
sz81bmfz2#
我为此创建了一个包:第一个月
请随意使用它:https://github.com/laracraft-tech/laravel-dynamic-model
这基本上允许您执行以下操作: