I'm working with an application in Laravel 5.5 with Firebird database. I'm trying to install Laravel Passport, but when I do php artisan passport:install I get error:
"In Processor.php line 34
SQLSTATE[IM001]: Driver does not support this function: driver does not support lastInsertId()"
I know that Firebird doesn't support lastInsertId
and in my models I changed the increment value to false to get it working, but I don't know how to fix it in Passport to get the package installed and working. I've searched here and in other forums but didn't found a similar case or any fixes.