sql-to-laravel-builder
sql-to-laravel-builder copied to clipboard
SQL to Laravel Query Builder
Besides array(), for PHP >= 5.4 it should support also the short syntax [ ].
"union" "union all" gives the same result >union(DB::... I think must be unionAll(DB::..
I want to get a Builder object but without get I want to keep working on it. possible? edit: Now I notice that it just generates a string without activation…
`INSERT INTO 'table' ('id', 'field') VALUES (22, -5);`
doesn't support for "using" clause on join query `SELECT * FROM A JOIN B using (b_id)`