table('interviews AS t1') ->select('t1.id', 't1.headline', 't2.user_id', 't2.uname', 't2.icon') ->leftJoin('users AS t2', 't1.username', '=', 't2.uname') ->orderByDesc('t1.datum') ->limit(60) ->get(); } catch (\Throwable $e) { $interviews = collect(); } $page_title = 'Interviews'; return view('legacy.interviews', compact('interviews', 'page_title')); } }