Код: Выделить всё
public function list()
{
$scholars = Member::all();
$scholar_ids = [];
foreach ($scholars as $scholar) {
array_push($scholar_ids, $scholar->scholar_id);
}
$scholar_exits = Scholar::where('scholar_id','=', $scholar_ids)->get();
dd($scholar_ids);
dd($scholar_exits);
}
array:7 [▼
0 => 7
1 => 8
2 => 12
3 => 13
4 => 14
5 => 15
6 => 16
]
Collection {#275 ▼
#items: []
}
Подробнее здесь: https://stackoverflow.com/questions/409 ... ther-table
Мобильная версия