How can I model dynamic tables names.
For example. A product has orders, all orders for the same product are stored in the same table. when a new product is added to the inventory a new table should be created for all orders of the product. ??
The way i see it : All order tables have the same column names, usage ... everything is the same and only the table name changes. If this is the case, you should make a generic model for handling orders that you should call maybe Order and implement in this model all your methods ... But then you can set the Model table name using the setTable() method depending on the product.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community