多个在Laravel中使用查询的位置

时间:2015-04-06 16:09:50

标签: php mysql laravel where

我有这段代码:

if ($tipo==='d') {
    $movimentos=movimento::where('tipo',$d)->WhereIn('destino',$idcontas)->whereBetween('data', [$compdata, Carbon::now()])->get(); 

} elseif ($tipo==='c') {
    $movimentos=movimento::where('tipo',$d)->WhereIn('origem',$idcontas)->whereBetween('data', [$compdata, Carbon::now()])->get();  

} else {
    $movimentos=movimento::where('tipo',$d)->WhereIn('origem',$idcontas)->WhereIn('destino',$idcontas)->whereBetween('data', [$compdata, Carbon::now()])->get();    
}

我已经看过很多关于多个在laravel的帖子,但没有一个关于那些特殊的人。 我有atm的代码不起作用,但如果我只有一个像whereBet之间的那样。

有人可以帮助我让他们一切正常吗?

0 个答案:

没有答案