This may be a duplicate of: https://www.skipper18.com/support/2875/table-name-prefixes-for-each-bundle But instead of replying to a post 3 years old, I'd create a new one in hopes this is now possible.
It would be really nice to have the ability to specify a table prefix for all Entities within a Module (Laravel based project).
For example I'm working with networking / device data;
Device (physical) Ports; which are completely different from Network (tcp/udp) Ports. So I have two models in different namespaces with the same name. I know I can change the table name per-entity, but it would be nice to be able to implement a prefix on the Module and have it applied to all entities for consistency purposes.
I.E.
Module "Network" => prefix "network"
Module "Device" => prefix "device"
Entity "Network\Port" automatically sets the table name to "networkport"
Entity "Device\Port" automatically sets the table name to "deviceport"