I am creating a backend interface for a site made in Joomla. I am using Laravel to create the backend. Joomla has table prefixes and tend to have long table names there are some of which around 25 characters.
My issue is, I have looked around to see if that you can alias table names (so I don't have to type the table name all the time in the join statement) by I don't seem to be able to find a method for this in the query object.
ModelName::getTable(); // Happens to be a static method.
Any helper much appreciated.