$user = DB::table('users')->where('name', '=', 'John')->first();
$users = DB::table('users')->orderBy('name')->get();
$users = DB::table('users')->select('name', 'email')->get();In the above example, we use the Builder class to retrieve only the 'name' and 'email' columns from the 'users' table. This package belongs to the Laravel framework.