A kontrollerben importáljuk a DB osztályt:
use Illuminate\Support\Facades\DB;
public function getEmployees() { return DB::table('employees')->get(); }
public function getEmployees() { return DB::table('employees') ->select('name', 'city') ->get(); }
public function getEmployees() { return DB::table('users') ->select('name', 'city') ->where('city', 'Szeged') ->get(); }