Код: Выделить всё
$users = DB::table('really_long_table_name')
->select('really_long_table_name.id')
->get();
Код: Выделить всё
really_long_table_name AS short_name
Подробнее здесь: https://stackoverflow.com/questions/177 ... ry-builder
Код: Выделить всё
$users = DB::table('really_long_table_name')
->select('really_long_table_name.id')
->get();
Код: Выделить всё
really_long_table_name AS short_name