Laravel - 如何知道哪些模型与特定模型相关?
Laravel - How to know which models are related to a specific model?
我想知道与我的table有关的型号。
有这样的方法吗?
$model = new $model;
$table = $model->getTable();
$columns = Schema::getColumnListing($table);
例如这样的?
$model->relationships()
提前致谢!
没有开箱即用的方法,您必须想出自己的解决方案。你可以在这里试试这个:https://laracasts.com/discuss/channels/eloquent/get-all-model-relationships
我想知道与我的table有关的型号。
有这样的方法吗?
$model = new $model;
$table = $model->getTable();
$columns = Schema::getColumnListing($table);
例如这样的?
$model->relationships()
提前致谢!
没有开箱即用的方法,您必须想出自己的解决方案。你可以在这里试试这个:https://laracasts.com/discuss/channels/eloquent/get-all-model-relationships