consume an external API with Filament Tables
I tried a new Laravel install using this package https://filamentphp.com/blog/how-to-consume-an-external-api-with-filament-tables, but it always returns a "could not find driver" error. I'm not sure why it's doing this as the entire purpose of this package is to consume JSON and use it in a Filament table without having to use a database. I tried a clean install using the instructions here https://github.com/leandrocfe/filament-tables-json-data-source, but it always results in the same error. Any ideas?
could not find driver
CREATE TABLE "publications" (
"id" integer NOT NULL PRIMARY key autoincrement,
"title" varchar,
"description" varchar,
"price" integer,
"rating" float,
"brand" varchar,
"category" varchar,
"thumbnail" varchar
)
could not find driver
CREATE TABLE "publications" (
"id" integer NOT NULL PRIMARY key autoincrement,
"title" varchar,
"description" varchar,
"price" integer,
"rating" float,
"brand" varchar,
"category" varchar,
"thumbnail" varchar
)