Is there a way to get the column listing with column type using eloquent?
I am trying to get the column listing along with column type, isNullable, default value.
I am aware I can get column listing like so Schema::getColumnListing('posts') but that only gives me the names of the column not the rest of the story.
How can I obtain such info using eloquent?
Is this something possible without having to manually execute a select query againstINFORMATION_SCHEMA.COLUMNS table for every supported database driver?