In response to #8, the database prefix is added to the $tableName attribute of ModelService (58aae1e). However, this prefix should only be added when executing SQL queries, not when using Laravel Database Builder functions like getColumnListing() as the Builder automatically prefixes table names with the configurated db prefix.
In response to #8, the database prefix is added to the
$tableName
attribute ofModelService
(58aae1e). However, this prefix should only be added when executing SQL queries, not when using Laravel Database Builder functions likegetColumnListing()
as the Builder automatically prefixes table names with the configurated db prefix.