Yeah, Laravel not support ODBC by default. But, you can use PDO connection. For example,
$connectionString = "Driver={iSeries Access ODBC Driver}; System=my_system_name; Uid=myUsername; Pwd=myPassword;";
$pdo = new \PDO($connectionString);
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community