I have a query with ORM that is also querying a related object, which is called "base". So I have $class::query()->related('base')->etc. I want to add a condition, where(\DB::expr('DATE(`base`.`created`)'), $date_variable), but ORM aliases the tables and columns so that I can "guess" by doing DATE(t1.c3), but it has the potential to break whenever I add a column to the database. Is there any way of using DB::expr and use the relation name and column name without the aliases?