I need help. I have a laravel 8 with postgresql in a production server, where from a controller I can perfectly access the records of a test table and display them in the view. Up to here everything ok. But when trying to install livewire to have users, it does not allow me to do the migration.
php artisan migrate:
could not find driver (SQL: select * from information_schema.tables where table_schema = myschema and table_name = migrations and table_type = 'BASE TABLE')
Composer with its latest version. I already tried these commands, without success.
php artisan cache:clear
php artisan config:cache
php artisan optimize:clear
I don't understand how laravel can access the records in a controller but not access to do the migration
I accept ideas of all colors. Thanks!