我想为15种型号建立搜索过滤器,例如,如果我们认为15种型号的参数都相同,我想知道我是否应该为此做一个助手而不重复它或服务提供商,我如果你告诉别人选择一个的区别和理由,我会很高兴的。 这是我的搜索方法作为示例:
$result = DB::table('mod_dns_records')
->where('scheduled', 'N')
->where('scheduleTime', 0)
->where('domainId', $id)
->orWhere('deleteRow', 'Y')
->where('domainId', $id)
->get();
仅提及在将结果作为api发送时,如果选择有任何不同
答案 0 :(得分:1)
helper不正确,您必须使用服务提供商或存储库模式。