hiçbir çıkış,Ham sorgular Merhaba bu çıkış yok bu ham sorguya biraz yardım isteyebilirsiniz
$userproj_id = UserProject::select('projid')->where('user_id', $id)->get()->toArray();
$flattenid = array_flatten($userproj_id);
foreach ($flattenid as $projid) {
$projidarr [] = $projid;
}
$users = DB::select('select * from project where projid in (?) and user_id = 3 ', $projidarr);
ama elle böyle yapacak olursa, iyi çalışıyor ..
$users = DB::select('select * from project where projid in (?) and user_id = 3 ', ['12345']);
ama bunu elle yaptığımda tekrar çıkış yok.
$users = DB::select('select * from project where projid in (?) and user_id = 3 ', ['12345','11111']);
Şimdiden teşekkür ederiz.
http://stackoverflow.com/a/35725251/4248472? – Zimmi