如何在Laravel Query Builder中使用“USING”

I'm wondering if it's possible to use LEFT JOIN table USING (id) ... anyone who tried using "USING" in laravel query builder?

Normally, a MySQL query statement "SELECT * FROM t1 LEFT JOIN t2 ON (t1.id = t2.id)" can be written in Laravel Query Builder like below...

DB::table('t1')->leftJoin('t2','t1.id','=','t2.id')->get();

But, how do you write this "SELECT * FROM t1 LEFT JOIN t2 USING (id)" in Laravel Query Builder?????