I have 3 tables.
The first two tables are Groups and Accounts.
An account can belong to many groups.
A group can have many accounts.
In other words it is a many to many relationship.
Therefore I need a 3rd table, which is a join table
What is the recommended naming convention of this join table in Laravel (or perhaps in general).
Is there any naming conventions?
I was planning to call it "GroupsAccountAssignment".