How can I select all columns from one of multiple concatenated tables?
DB::table('table as t')->select('t*');
asterix doesn't seem to work in Laravel? Thank!
Yes it works, but you are wrong. Try this (note . ):
.
DB::table('table as t')->select('t.*');
Try DB::table('table')->get();
DB::table('table')->get();